Add support for custom names for library functions in TargetLibraryInfo. Add a custo...
[oota-llvm.git] / lib / Target / TargetLibraryInfo.cpp
1 //===-- TargetLibraryInfo.cpp - Runtime library information ----------------==//
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 // This file implements the TargetLibraryInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Target/TargetLibraryInfo.h"
15 #include "llvm/ADT/Triple.h"
16 using namespace llvm;
17
18 // Register the default implementation.
19 INITIALIZE_PASS(TargetLibraryInfo, "targetlibinfo",
20                 "Target Library Information", false, true)
21 char TargetLibraryInfo::ID = 0;
22
23 const char* TargetLibraryInfo::StandardNames[LibFunc::NumLibFuncs] =
24   {
25     "memset",
26     "memcpy",
27     "memmove",
28     "memset_pattern16",
29     "iprintf",
30     "siprintf",
31     "fiprintf",
32     "fwrite",
33     "fputs"
34   };
35
36 /// initialize - Initialize the set of available library functions based on the
37 /// specified target triple.  This should be carefully written so that a missing
38 /// target triple gets a sane set of defaults.
39 static void initialize(TargetLibraryInfo &TLI, const Triple &T) {
40   initializeTargetLibraryInfoPass(*PassRegistry::getPassRegistry());
41
42   
43   // memset_pattern16 is only available on iOS 3.0 and Mac OS/X 10.5 and later.
44   if (T.isMacOSX()) {
45     if (T.isMacOSXVersionLT(10, 5))
46       TLI.setUnavailable(LibFunc::memset_pattern16);
47   } else if (T.getOS() == Triple::IOS) {
48     if (T.isOSVersionLT(3, 0))
49       TLI.setUnavailable(LibFunc::memset_pattern16);
50   } else {
51     TLI.setUnavailable(LibFunc::memset_pattern16);
52   }
53
54   if (T.isMacOSX() && T.getArch() == Triple::x86 &&
55       !T.isMacOSXVersionLT(10, 7)) {
56     // x86-32 OSX has a scheme where fwrite and fputs (and some other functions
57     // we don't care about) have two versions; on recent OSX, the one we want
58     // has a $UNIX2003 suffix. The two implementations are identical except
59     // for the return value in some edge cases.  However, we don't want to
60     // generate code that depends on the old symbols.
61     TLI.setAvailableWithName(LibFunc::fwrite, "fwrite$UNIX2003");
62     TLI.setAvailableWithName(LibFunc::fputs, "fputs$UNIX2003");
63   }
64
65   // iprintf and friends are only available on XCore and TCE.
66   if (T.getArch() != Triple::xcore && T.getArch() != Triple::tce) {
67     TLI.setUnavailable(LibFunc::iprintf);
68     TLI.setUnavailable(LibFunc::siprintf);
69     TLI.setUnavailable(LibFunc::fiprintf);
70   }
71 }
72
73
74 TargetLibraryInfo::TargetLibraryInfo() : ImmutablePass(ID) {
75   // Default to everything being available.
76   memset(AvailableArray, -1, sizeof(AvailableArray));
77
78   initialize(*this, Triple());
79 }
80
81 TargetLibraryInfo::TargetLibraryInfo(const Triple &T) : ImmutablePass(ID) {
82   // Default to everything being available.
83   memset(AvailableArray, -1, sizeof(AvailableArray));
84   
85   initialize(*this, T);
86 }
87
88 TargetLibraryInfo::TargetLibraryInfo(const TargetLibraryInfo &TLI)
89   : ImmutablePass(ID) {
90   memcpy(AvailableArray, TLI.AvailableArray, sizeof(AvailableArray));
91   CustomNames = TLI.CustomNames;
92 }
93
94
95 /// disableAllFunctions - This disables all builtins, which is used for options
96 /// like -fno-builtin.
97 void TargetLibraryInfo::disableAllFunctions() {
98   memset(AvailableArray, 0, sizeof(AvailableArray));
99 }