Convert sqrt functions into sqrt instructions when -ffast-math is in effect.
[oota-llvm.git] / include / llvm / Target / TargetLibraryInfo.h
1 //===-- llvm/Target/TargetLibraryInfo.h - Library information ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_TARGET_TARGETLIBRARYINFO_H
11 #define LLVM_TARGET_TARGETLIBRARYINFO_H
12
13 #include "llvm/ADT/DenseMap.h"
14 #include "llvm/Pass.h"
15
16 namespace llvm {
17   class Triple;
18
19   namespace LibFunc {
20     enum Func {
21       /// int _IO_getc(_IO_FILE * __fp);
22       under_IO_getc,
23       /// int _IO_putc(int __c, _IO_FILE * __fp);
24       under_IO_putc,
25       /// void operator delete[](void*);
26       ZdaPv,
27       /// void operator delete(void*);
28       ZdlPv,
29       /// void *new[](unsigned int);
30       Znaj,
31       /// void *new[](unsigned int, nothrow);
32       ZnajRKSt9nothrow_t,
33       /// void *new[](unsigned long);
34       Znam,
35       /// void *new[](unsigned long, nothrow);
36       ZnamRKSt9nothrow_t,
37       /// void *new(unsigned int);
38       Znwj,
39       /// void *new(unsigned int, nothrow);
40       ZnwjRKSt9nothrow_t,
41       /// void *new(unsigned long);
42       Znwm,
43       /// void *new(unsigned long, nothrow);
44       ZnwmRKSt9nothrow_t,
45       /// int __cxa_atexit(void (*f)(void *), void *p, void *d);
46       cxa_atexit,
47       /// void __cxa_guard_abort(guard_t *guard);
48       /// guard_t is int64_t in Itanium ABI or int32_t on ARM eabi.
49       cxa_guard_abort,      
50       /// int __cxa_guard_acquire(guard_t *guard);
51       cxa_guard_acquire,
52       /// void __cxa_guard_release(guard_t *guard);
53       cxa_guard_release,
54       /// int __isoc99_scanf (const char *format, ...)
55       dunder_isoc99_scanf,
56       /// int __isoc99_sscanf(const char *s, const char *format, ...)
57       dunder_isoc99_sscanf,
58       /// void *__memcpy_chk(void *s1, const void *s2, size_t n, size_t s1size);
59       memcpy_chk,
60       /// double __sqrt_finite(double x);
61       sqrt_finite,
62       /// float __sqrt_finite(float x);
63       sqrtf_finite,
64       /// long double __sqrt_finite(long double x);
65       sqrtl_finite,
66       /// char * __strdup(const char *s);
67       dunder_strdup,
68       /// char *__strndup(const char *s, size_t n);
69       dunder_strndup,
70       /// char * __strtok_r(char *s, const char *delim, char **save_ptr);
71       dunder_strtok_r,
72       /// int abs(int j);
73       abs,
74       /// int access(const char *path, int amode);
75       access,
76       /// double acos(double x);
77       acos,
78       /// float acosf(float x);
79       acosf,
80       /// double acosh(double x);
81       acosh,
82       /// float acoshf(float x);
83       acoshf,
84       /// long double acoshl(long double x);
85       acoshl,
86       /// long double acosl(long double x);
87       acosl,
88       /// double asin(double x);
89       asin,
90       /// float asinf(float x);
91       asinf,
92       /// double asinh(double x);
93       asinh,
94       /// float asinhf(float x);
95       asinhf,
96       /// long double asinhl(long double x);
97       asinhl,
98       /// long double asinl(long double x);
99       asinl,
100       /// double atan(double x);
101       atan,
102       /// double atan2(double y, double x);
103       atan2,
104       /// float atan2f(float y, float x);
105       atan2f,
106       /// long double atan2l(long double y, long double x);
107       atan2l,
108       /// float atanf(float x);
109       atanf,
110       /// double atanh(double x);
111       atanh,
112       /// float atanhf(float x);
113       atanhf,
114       /// long double atanhl(long double x);
115       atanhl,
116       /// long double atanl(long double x);
117       atanl,
118       /// double atof(const char *str);
119       atof,
120       /// int atoi(const char *str);
121       atoi,
122       /// long atol(const char *str);
123       atol,
124       /// long long atoll(const char *nptr);
125       atoll,
126       /// int bcmp(const void *s1, const void *s2, size_t n);
127       bcmp,
128       /// void bcopy(const void *s1, void *s2, size_t n);
129       bcopy,
130       /// void bzero(void *s, size_t n);
131       bzero,
132       /// void *calloc(size_t count, size_t size);
133       calloc,
134       /// double cbrt(double x);
135       cbrt,
136       /// float cbrtf(float x);
137       cbrtf,
138       /// long double cbrtl(long double x);
139       cbrtl,
140       /// double ceil(double x);
141       ceil,
142       /// float ceilf(float x);
143       ceilf,
144       /// long double ceill(long double x);
145       ceill,
146       /// int chmod(const char *path, mode_t mode);
147       chmod,
148       /// int chown(const char *path, uid_t owner, gid_t group);
149       chown,
150       /// void clearerr(FILE *stream);
151       clearerr,
152       /// int closedir(DIR *dirp);
153       closedir,
154       /// double copysign(double x, double y);
155       copysign,
156       /// float copysignf(float x, float y);
157       copysignf,
158       /// long double copysignl(long double x, long double y);
159       copysignl,
160       /// double cos(double x);
161       cos,
162       /// float cosf(float x);
163       cosf,
164       /// double cosh(double x);
165       cosh,
166       /// float coshf(float x);
167       coshf,
168       /// long double coshl(long double x);
169       coshl,
170       /// long double cosl(long double x);
171       cosl,
172       /// char *ctermid(char *s);
173       ctermid,
174       /// double exp(double x);
175       exp,
176       /// double exp10(double x);
177       exp10,
178       /// float exp10f(float x);
179       exp10f,
180       /// long double exp10l(long double x);
181       exp10l,
182       /// double exp2(double x);
183       exp2,
184       /// float exp2f(float x);
185       exp2f,
186       /// long double exp2l(long double x);
187       exp2l,
188       /// float expf(float x);
189       expf,
190       /// long double expl(long double x);
191       expl,
192       /// double expm1(double x);
193       expm1,
194       /// float expm1f(float x);
195       expm1f,
196       /// long double expm1l(long double x);
197       expm1l,
198       /// double fabs(double x);
199       fabs,
200       /// float fabsf(float x);
201       fabsf,
202       /// long double fabsl(long double x);
203       fabsl,
204       /// int fclose(FILE *stream);
205       fclose,
206       /// FILE *fdopen(int fildes, const char *mode);
207       fdopen,
208       /// int feof(FILE *stream);
209       feof,
210       /// int ferror(FILE *stream);
211       ferror,
212       /// int fflush(FILE *stream);
213       fflush,
214       /// int ffs(int i);
215       ffs,
216       /// int ffsl(long int i);
217       ffsl,
218       /// int ffsll(long long int i);
219       ffsll,
220       /// int fgetc(FILE *stream);
221       fgetc,
222       /// int fgetpos(FILE *stream, fpos_t *pos);
223       fgetpos,
224       /// char *fgets(char *s, int n, FILE *stream);
225       fgets,
226       /// int fileno(FILE *stream);
227       fileno,
228       /// int fiprintf(FILE *stream, const char *format, ...);
229       fiprintf,
230       /// void flockfile(FILE *file);
231       flockfile,
232       /// double floor(double x);
233       floor,
234       /// float floorf(float x);
235       floorf,
236       /// long double floorl(long double x);
237       floorl,
238       /// double fmod(double x, double y);
239       fmod,
240       /// float fmodf(float x, float y);
241       fmodf,
242       /// long double fmodl(long double x, long double y);
243       fmodl,
244       /// FILE *fopen(const char *filename, const char *mode);
245       fopen,
246       /// FILE *fopen64(const char *filename, const char *opentype)
247       fopen64,
248       /// int fprintf(FILE *stream, const char *format, ...);
249       fprintf,
250       /// int fputc(int c, FILE *stream);
251       fputc,
252       /// int fputs(const char *s, FILE *stream);
253       fputs,
254       /// size_t fread(void *ptr, size_t size, size_t nitems, FILE *stream);
255       fread,
256       /// void free(void *ptr);
257       free,
258       /// double frexp(double num, int *exp);
259       frexp,
260       /// float frexpf(float num, int *exp);
261       frexpf,
262       /// long double frexpl(long double num, int *exp);
263       frexpl,
264       /// int fscanf(FILE *stream, const char *format, ... );
265       fscanf,
266       /// int fseek(FILE *stream, long offset, int whence);
267       fseek,
268       /// int fseeko(FILE *stream, off_t offset, int whence);
269       fseeko,
270       /// int fseeko64(FILE *stream, off64_t offset, int whence)
271       fseeko64,
272       /// int fsetpos(FILE *stream, const fpos_t *pos);
273       fsetpos,
274       /// int fstat(int fildes, struct stat *buf);
275       fstat,
276       /// int fstat64(int filedes, struct stat64 *buf)
277       fstat64,
278       /// int fstatvfs(int fildes, struct statvfs *buf);
279       fstatvfs,
280       /// int fstatvfs64(int fildes, struct statvfs64 *buf);
281       fstatvfs64,
282       /// long ftell(FILE *stream);
283       ftell,
284       /// off_t ftello(FILE *stream);
285       ftello,
286       /// off64_t ftello64(FILE *stream)
287       ftello64,
288       /// int ftrylockfile(FILE *file);
289       ftrylockfile,
290       /// void funlockfile(FILE *file);
291       funlockfile,
292       /// size_t fwrite(const void *ptr, size_t size, size_t nitems,
293       /// FILE *stream);
294       fwrite,
295       /// int getc(FILE *stream);
296       getc,
297       /// int getc_unlocked(FILE *stream);
298       getc_unlocked,
299       /// int getchar(void);
300       getchar,
301       /// char *getenv(const char *name);
302       getenv,
303       /// int getitimer(int which, struct itimerval *value);
304       getitimer,
305       /// int getlogin_r(char *name, size_t namesize);
306       getlogin_r,
307       /// struct passwd *getpwnam(const char *name);
308       getpwnam,
309       /// char *gets(char *s);
310       gets,
311       /// uint32_t htonl(uint32_t hostlong);
312       htonl,
313       /// uint16_t htons(uint16_t hostshort);
314       htons,
315       /// int iprintf(const char *format, ...);
316       iprintf,
317       /// int isascii(int c);
318       isascii,
319       /// int isdigit(int c);
320       isdigit,
321       /// long int labs(long int j);
322       labs,
323       /// int lchown(const char *path, uid_t owner, gid_t group);
324       lchown,
325       /// long long int llabs(long long int j);
326       llabs,
327       /// double log(double x);
328       log,
329       /// double log10(double x);
330       log10,
331       /// float log10f(float x);
332       log10f,
333       /// long double log10l(long double x);
334       log10l,
335       /// double log1p(double x);
336       log1p,
337       /// float log1pf(float x);
338       log1pf,
339       /// long double log1pl(long double x);
340       log1pl,
341       /// double log2(double x);
342       log2,
343       /// float log2f(float x);
344       log2f,
345       /// double long double log2l(long double x);
346       log2l,
347       /// double logb(double x);
348       logb,
349       /// float logbf(float x);
350       logbf,
351       /// long double logbl(long double x);
352       logbl,
353       /// float logf(float x);
354       logf,
355       /// long double logl(long double x);
356       logl,
357       /// int lstat(const char *path, struct stat *buf);
358       lstat,
359       /// int lstat64(const char *path, struct stat64 *buf);
360       lstat64,
361       /// void *malloc(size_t size);
362       malloc,
363       /// void *memalign(size_t boundary, size_t size);
364       memalign,
365       /// void *memccpy(void *s1, const void *s2, int c, size_t n);
366       memccpy,
367       /// void *memchr(const void *s, int c, size_t n);
368       memchr,
369       /// int memcmp(const void *s1, const void *s2, size_t n);
370       memcmp,
371       /// void *memcpy(void *s1, const void *s2, size_t n);
372       memcpy,
373       /// void *memmove(void *s1, const void *s2, size_t n);
374       memmove,
375       // void *memrchr(const void *s, int c, size_t n);
376       memrchr,
377       /// void *memset(void *b, int c, size_t len);
378       memset,
379       /// void memset_pattern16(void *b, const void *pattern16, size_t len);
380       memset_pattern16,
381       /// int mkdir(const char *path, mode_t mode);
382       mkdir,
383       /// time_t mktime(struct tm *timeptr);
384       mktime,
385       /// double modf(double x, double *iptr);
386       modf,
387       /// float modff(float, float *iptr);
388       modff,
389       /// long double modfl(long double value, long double *iptr);
390       modfl,
391       /// double nearbyint(double x);
392       nearbyint,
393       /// float nearbyintf(float x);
394       nearbyintf,
395       /// long double nearbyintl(long double x);
396       nearbyintl,
397       /// uint32_t ntohl(uint32_t netlong);
398       ntohl,
399       /// uint16_t ntohs(uint16_t netshort);
400       ntohs,
401       /// int open(const char *path, int oflag, ... );
402       open,
403       /// int open64(const char *filename, int flags[, mode_t mode])
404       open64,
405       /// DIR *opendir(const char *dirname);
406       opendir,
407       /// int pclose(FILE *stream);
408       pclose,
409       /// void perror(const char *s);
410       perror,
411       /// FILE *popen(const char *command, const char *mode);
412       popen,
413       /// int posix_memalign(void **memptr, size_t alignment, size_t size);
414       posix_memalign,
415       /// double pow(double x, double y);
416       pow,
417       /// float powf(float x, float y);
418       powf,
419       /// long double powl(long double x, long double y);
420       powl,
421       /// ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
422       pread,
423       /// int printf(const char *format, ...);
424       printf,
425       /// int putc(int c, FILE *stream);
426       putc,
427       /// int putchar(int c);
428       putchar,
429       /// int puts(const char *s);
430       puts,
431       /// ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
432       ///                off_t offset);
433       pwrite,
434       /// void qsort(void *base, size_t nel, size_t width,
435       ///            int (*compar)(const void *, const void *));
436       qsort,
437       /// ssize_t read(int fildes, void *buf, size_t nbyte);
438       read,
439       /// ssize_t readlink(const char *path, char *buf, size_t bufsize);
440       readlink,
441       /// void *realloc(void *ptr, size_t size);
442       realloc,
443       /// void *reallocf(void *ptr, size_t size);
444       reallocf,
445       /// char *realpath(const char *file_name, char *resolved_name);
446       realpath,
447       /// int remove(const char *path);
448       remove,
449       /// int rename(const char *old, const char *new);
450       rename,
451       /// void rewind(FILE *stream);
452       rewind,
453       /// double rint(double x);
454       rint,
455       /// float rintf(float x);
456       rintf,
457       /// long double rintl(long double x);
458       rintl,
459       /// int rmdir(const char *path);
460       rmdir,
461       /// double round(double x);
462       round,
463       /// float roundf(float x);
464       roundf,
465       /// long double roundl(long double x);
466       roundl,
467       /// int scanf(const char *restrict format, ... );
468       scanf,
469       /// void setbuf(FILE *stream, char *buf);
470       setbuf,
471       /// int setitimer(int which, const struct itimerval *value,
472       ///               struct itimerval *ovalue);
473       setitimer,
474       /// int setvbuf(FILE *stream, char *buf, int type, size_t size);
475       setvbuf,
476       /// double sin(double x);
477       sin,
478       /// float sinf(float x);
479       sinf,
480       /// double sinh(double x);
481       sinh,
482       /// float sinhf(float x);
483       sinhf,
484       /// long double sinhl(long double x);
485       sinhl,
486       /// long double sinl(long double x);
487       sinl,
488       /// int siprintf(char *str, const char *format, ...);
489       siprintf,
490       /// int snprintf(char *s, size_t n, const char *format, ...);
491       snprintf,
492       /// int sprintf(char *str, const char *format, ...);
493       sprintf,
494       /// double sqrt(double x);
495       sqrt,
496       /// float sqrtf(float x);
497       sqrtf,
498       /// long double sqrtl(long double x);
499       sqrtl,
500       /// int sscanf(const char *s, const char *format, ... );
501       sscanf,
502       /// int stat(const char *path, struct stat *buf);
503       stat,
504       /// int stat64(const char *path, struct stat64 *buf);
505       stat64,
506       /// int statvfs(const char *path, struct statvfs *buf);
507       statvfs,
508       /// int statvfs64(const char *path, struct statvfs64 *buf)
509       statvfs64,
510       /// char *stpcpy(char *s1, const char *s2);
511       stpcpy,
512       /// char *stpncpy(char *s1, const char *s2, size_t n);
513       stpncpy,
514       /// int strcasecmp(const char *s1, const char *s2);
515       strcasecmp,
516       /// char *strcat(char *s1, const char *s2);
517       strcat,
518       /// char *strchr(const char *s, int c);
519       strchr,
520       /// int strcmp(const char *s1, const char *s2);
521       strcmp,
522       /// int strcoll(const char *s1, const char *s2);
523       strcoll,
524       /// char *strcpy(char *s1, const char *s2);
525       strcpy,
526       /// size_t strcspn(const char *s1, const char *s2);
527       strcspn,
528       /// char *strdup(const char *s1);
529       strdup,
530       /// size_t strlen(const char *s);
531       strlen,
532       /// int strncasecmp(const char *s1, const char *s2, size_t n);
533       strncasecmp,
534       /// char *strncat(char *s1, const char *s2, size_t n);
535       strncat,
536       /// int strncmp(const char *s1, const char *s2, size_t n);
537       strncmp,
538       /// char *strncpy(char *s1, const char *s2, size_t n);
539       strncpy,
540       /// char *strndup(const char *s1, size_t n);
541       strndup,
542       /// size_t strnlen(const char *s, size_t maxlen);
543       strnlen,
544       /// char *strpbrk(const char *s1, const char *s2);
545       strpbrk,
546       /// char *strrchr(const char *s, int c);
547       strrchr,
548       /// size_t strspn(const char *s1, const char *s2);
549       strspn,
550       /// char *strstr(const char *s1, const char *s2);
551       strstr,
552       /// double strtod(const char *nptr, char **endptr);
553       strtod,
554       /// float strtof(const char *nptr, char **endptr);
555       strtof,
556       // char *strtok(char *s1, const char *s2);
557       strtok,
558       // char *strtok_r(char *s, const char *sep, char **lasts);
559       strtok_r,
560       /// long int strtol(const char *nptr, char **endptr, int base);
561       strtol,
562       /// long double strtold(const char *nptr, char **endptr);
563       strtold,
564       /// long long int strtoll(const char *nptr, char **endptr, int base);
565       strtoll,
566       /// unsigned long int strtoul(const char *nptr, char **endptr, int base);
567       strtoul,
568       /// unsigned long long int strtoull(const char *nptr, char **endptr,
569       ///                                 int base);
570       strtoull,
571       /// size_t strxfrm(char *s1, const char *s2, size_t n);
572       strxfrm,
573       /// int system(const char *command);
574       system,
575       /// double tan(double x);
576       tan,
577       /// float tanf(float x);
578       tanf,
579       /// double tanh(double x);
580       tanh,
581       /// float tanhf(float x);
582       tanhf,
583       /// long double tanhl(long double x);
584       tanhl,
585       /// long double tanl(long double x);
586       tanl,
587       /// clock_t times(struct tms *buffer);
588       times,
589       /// FILE *tmpfile(void);
590       tmpfile,
591       /// FILE *tmpfile64(void)
592       tmpfile64,
593       /// int toascii(int c);
594       toascii,
595       /// double trunc(double x);
596       trunc,
597       /// float truncf(float x);
598       truncf,
599       /// long double truncl(long double x);
600       truncl,
601       /// int uname(struct utsname *name);
602       uname,
603       /// int ungetc(int c, FILE *stream);
604       ungetc,
605       /// int unlink(const char *path);
606       unlink,
607       /// int unsetenv(const char *name);
608       unsetenv,
609       /// int utime(const char *path, const struct utimbuf *times);
610       utime,
611       /// int utimes(const char *path, const struct timeval times[2]);
612       utimes,
613       /// void *valloc(size_t size);
614       valloc,
615       /// int vfprintf(FILE *stream, const char *format, va_list ap);
616       vfprintf,
617       /// int vfscanf(FILE *stream, const char *format, va_list arg);
618       vfscanf,
619       /// int vprintf(const char *restrict format, va_list ap);
620       vprintf,
621       /// int vscanf(const char *format, va_list arg);
622       vscanf,
623       /// int vsnprintf(char *s, size_t n, const char *format, va_list ap);
624       vsnprintf,
625       /// int vsprintf(char *s, const char *format, va_list ap);
626       vsprintf,
627       /// int vsscanf(const char *s, const char *format, va_list arg);
628       vsscanf,
629       /// ssize_t write(int fildes, const void *buf, size_t nbyte);
630       write,
631
632       NumLibFuncs
633     };
634   }
635
636 /// TargetLibraryInfo - This immutable pass captures information about what
637 /// library functions are available for the current target, and allows a
638 /// frontend to disable optimizations through -fno-builtin etc.
639 class TargetLibraryInfo : public ImmutablePass {
640   virtual void anchor();
641   unsigned char AvailableArray[(LibFunc::NumLibFuncs+3)/4];
642   llvm::DenseMap<unsigned, std::string> CustomNames;
643   static const char* StandardNames[LibFunc::NumLibFuncs];
644
645   enum AvailabilityState {
646     StandardName = 3, // (memset to all ones)
647     CustomName = 1,
648     Unavailable = 0  // (memset to all zeros)
649   };
650   void setState(LibFunc::Func F, AvailabilityState State) {
651     AvailableArray[F/4] &= ~(3 << 2*(F&3));
652     AvailableArray[F/4] |= State << 2*(F&3);
653   }
654   AvailabilityState getState(LibFunc::Func F) const {
655     return static_cast<AvailabilityState>((AvailableArray[F/4] >> 2*(F&3)) & 3);
656   }
657
658 public:
659   static char ID;
660   TargetLibraryInfo();
661   TargetLibraryInfo(const Triple &T);
662   explicit TargetLibraryInfo(const TargetLibraryInfo &TLI);
663   
664   /// getLibFunc - Search for a particular function name.  If it is one of the
665   /// known library functions, return true and set F to the corresponding value.
666   bool getLibFunc(StringRef funcName, LibFunc::Func &F) const;
667
668   /// has - This function is used by optimizations that want to match on or form
669   /// a given library function.
670   bool has(LibFunc::Func F) const {
671     return getState(F) != Unavailable;
672   }
673
674   /// hasOptimizedCodeGen - Return true if the function is both available as
675   /// a builtin and a candidate for optimized code generation.
676   bool hasOptimizedCodeGen(LibFunc::Func F) const {
677     if (getState(F) == Unavailable)
678       return false;
679     switch (F) {
680     default: break;
681     case LibFunc::copysign:  case LibFunc::copysignf:  case LibFunc::copysignl:
682     case LibFunc::fabs:      case LibFunc::fabsf:      case LibFunc::fabsl:
683     case LibFunc::sin:       case LibFunc::sinf:       case LibFunc::sinl:
684     case LibFunc::cos:       case LibFunc::cosf:       case LibFunc::cosl:
685     case LibFunc::sqrt:      case LibFunc::sqrtf:      case LibFunc::sqrtl:
686     case LibFunc::sqrt_finite: case LibFunc::sqrtf_finite:
687                                                   case LibFunc::sqrtl_finite:
688     case LibFunc::floor:     case LibFunc::floorf:     case LibFunc::floorl:
689     case LibFunc::nearbyint: case LibFunc::nearbyintf: case LibFunc::nearbyintl:
690     case LibFunc::ceil:      case LibFunc::ceilf:      case LibFunc::ceill:
691     case LibFunc::rint:      case LibFunc::rintf:      case LibFunc::rintl:
692     case LibFunc::trunc:     case LibFunc::truncf:     case LibFunc::truncl:
693     case LibFunc::log2:      case LibFunc::log2f:      case LibFunc::log2l:
694     case LibFunc::exp2:      case LibFunc::exp2f:      case LibFunc::exp2l:
695     case LibFunc::memcmp:
696       return true;
697     }
698     return false;
699   }
700
701   StringRef getName(LibFunc::Func F) const {
702     AvailabilityState State = getState(F);
703     if (State == Unavailable)
704       return StringRef();
705     if (State == StandardName)
706       return StandardNames[F];
707     assert(State == CustomName);
708     return CustomNames.find(F)->second;
709   }
710
711   /// setUnavailable - this can be used by whatever sets up TargetLibraryInfo to
712   /// ban use of specific library functions.
713   void setUnavailable(LibFunc::Func F) {
714     setState(F, Unavailable);
715   }
716
717   void setAvailable(LibFunc::Func F) {
718     setState(F, StandardName);
719   }
720
721   void setAvailableWithName(LibFunc::Func F, StringRef Name) {
722     if (StandardNames[F] != Name) {
723       setState(F, CustomName);
724       CustomNames[F] = Name;
725       assert(CustomNames.find(F) != CustomNames.end());
726     } else {
727       setState(F, StandardName);
728     }
729   }
730
731   /// disableAllFunctions - This disables all builtins, which is used for
732   /// options like -fno-builtin.
733   void disableAllFunctions();
734 };
735
736 } // end namespace llvm
737
738 #endif