blob: 238c96a39afa123a4182ba96055f19050a321d25 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Builtins.cpp - Builtin function implementation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements various things for builtin functions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Builtins.h"
15#include "clang/AST/ASTContext.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000016#include "clang/Basic/IdentifierTable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Basic/TargetInfo.h"
18using namespace clang;
19
20static const Builtin::Info BuiltinInfo[] = {
21 { "not a builtin function", 0, 0 },
22#define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS },
23#include "clang/AST/Builtins.def"
24};
25
26const Builtin::Info &Builtin::Context::GetRecord(unsigned ID) const {
27 if (ID < Builtin::FirstTSBuiltin)
28 return BuiltinInfo[ID];
29 assert(ID - Builtin::FirstTSBuiltin < NumTSRecords && "Invalid builtin ID!");
30 return TSRecords[ID - Builtin::FirstTSBuiltin];
31}
32
33
34/// InitializeBuiltins - Mark the identifiers for all the builtins with their
35/// appropriate builtin ID # and mark any non-portable builtin identifiers as
36/// such.
37void Builtin::Context::InitializeBuiltins(IdentifierTable &Table,
38 const TargetInfo &Target) {
39 // Step #1: mark all target-independent builtins with their ID's.
40 for (unsigned i = Builtin::NotBuiltin+1; i != Builtin::FirstTSBuiltin; ++i)
41 Table.get(BuiltinInfo[i].Name).setBuiltinID(i);
42
43 // Step #2: handle target builtins.
44 std::vector<const char *> NonPortableBuiltins;
45 Target.getTargetBuiltins(TSRecords, NumTSRecords, NonPortableBuiltins);
46
47 // Step #2a: Register target-specific builtins.
48 for (unsigned i = 0, e = NumTSRecords; i != e; ++i)
49 Table.get(TSRecords[i].Name).setBuiltinID(i+Builtin::FirstTSBuiltin);
50
51 // Step #2b: Mark non-portable builtins as such.
52 for (unsigned i = 0, e = NonPortableBuiltins.size(); i != e; ++i)
53 Table.get(NonPortableBuiltins[i]).setNonPortableBuiltin(true);
54}
55
56/// DecodeTypeFromStr - This decodes one type descriptor from Str, advancing the
57/// pointer over the consumed characters. This returns the resultant type.
Anders Carlssondd1b5162007-11-28 05:19:59 +000058static QualType DecodeTypeFromStr(const char *&Str, ASTContext &Context,
59 bool AllowTypeModifiers = true) {
Reid Spencer5f016e22007-07-11 17:01:13 +000060 // Modifiers.
61 bool Long = false, LongLong = false, Signed = false, Unsigned = false;
62
63 // Read the modifiers first.
64 bool Done = false;
65 while (!Done) {
66 switch (*Str++) {
67 default: Done = true; --Str; break;
68 case 'S':
69 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
70 assert(!Signed && "Can't use 'S' modifier multiple times!");
71 Signed = true;
72 break;
73 case 'U':
74 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
75 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
76 Unsigned = true;
77 break;
78 case 'L':
79 assert(!LongLong && "Can't have LLL modifier");
80 if (Long)
81 LongLong = true;
82 else
83 Long = true;
84 break;
85 }
86 }
87
Anders Carlsson71993dd2007-08-17 05:31:46 +000088 QualType Type;
89
Reid Spencer5f016e22007-07-11 17:01:13 +000090 // Read the base type.
91 switch (*Str++) {
92 default: assert(0 && "Unknown builtin type letter!");
93 case 'v':
Steve Naroffe8770422007-08-08 17:48:34 +000094 assert(!Long && !Signed && !Unsigned && "Bad modifiers used with 'v'!");
Anders Carlsson71993dd2007-08-17 05:31:46 +000095 Type = Context.VoidTy;
96 break;
Reid Spencer5f016e22007-07-11 17:01:13 +000097 case 'f':
98 assert(!Long && !Signed && !Unsigned && "Bad modifiers used with 'f'!");
Anders Carlsson71993dd2007-08-17 05:31:46 +000099 Type = Context.FloatTy;
100 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 case 'd':
102 assert(!LongLong && !Signed && !Unsigned && "Bad modifiers used with 'd'!");
103 if (Long)
Anders Carlsson71993dd2007-08-17 05:31:46 +0000104 Type = Context.LongDoubleTy;
105 else
106 Type = Context.DoubleTy;
107 break;
Reid Spencer5f016e22007-07-11 17:01:13 +0000108 case 's':
109 assert(!LongLong && "Bad modifiers used with 's'!");
110 if (Unsigned)
Anders Carlsson71993dd2007-08-17 05:31:46 +0000111 Type = Context.UnsignedShortTy;
112 else
113 Type = Context.ShortTy;
114 break;
Steve Naroffe8770422007-08-08 17:48:34 +0000115 case 'i':
Anders Carlsson142f36d2007-11-27 07:22:09 +0000116 if (LongLong)
Anders Carlsson71993dd2007-08-17 05:31:46 +0000117 Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
Anders Carlsson142f36d2007-11-27 07:22:09 +0000118 else if (Long)
119 Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000120 else if (Unsigned)
121 Type = Context.UnsignedIntTy;
122 else
123 Type = Context.IntTy; // default is signed.
124 break;
125 case 'c':
126 assert(!Long && !LongLong && "Bad modifiers used with 'c'!");
127 if (Signed)
128 Type = Context.SignedCharTy;
129 else if (Unsigned)
130 Type = Context.UnsignedCharTy;
131 else
132 Type = Context.CharTy;
133 break;
Chris Lattner52735a02007-10-29 04:18:06 +0000134 case 'z': // size_t.
135 assert(!Long && !Signed && !Unsigned && "Bad modifiers for 'z'!");
136 Type = Context.getSizeType();
137 break;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000138 case 'F':
139 Type = Context.getCFConstantStringType();
140 break;
Anders Carlsson142f36d2007-11-27 07:22:09 +0000141 case 'a':
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000142 Type = Context.getBuiltinVaListType();
Anders Carlsson793680e2007-10-12 23:56:29 +0000143 assert(!Type.isNull() && "builtin va list type not initialized!");
Anders Carlssonb2cf3572007-10-11 01:00:40 +0000144 break;
Anders Carlsson142f36d2007-11-27 07:22:09 +0000145 case 'V': {
146 char *End;
147
148 unsigned NumElements = strtoul(Str, &End, 10);
149 assert(End != Str && "Missing vector size");
150
151 Str = End;
152
Anders Carlssondd1b5162007-11-28 05:19:59 +0000153 QualType ElementType = DecodeTypeFromStr(Str, Context, false);
Anders Carlsson142f36d2007-11-27 07:22:09 +0000154 Type = Context.getVectorType(ElementType, NumElements);
155 break;
156 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000157 }
Anders Carlsson71993dd2007-08-17 05:31:46 +0000158
Anders Carlssondd1b5162007-11-28 05:19:59 +0000159 if (!AllowTypeModifiers)
160 return Type;
161
Anders Carlsson71993dd2007-08-17 05:31:46 +0000162 Done = false;
163 while (!Done) {
164 switch (*Str++) {
Anders Carlssondd1b5162007-11-28 05:19:59 +0000165 default: Done = true; --Str; break;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000166 case '*':
167 Type = Context.getPointerType(Type);
168 break;
Anders Carlsson793680e2007-10-12 23:56:29 +0000169 case '&':
170 Type = Context.getReferenceType(Type);
171 break;
Anders Carlsson71993dd2007-08-17 05:31:46 +0000172 case 'C':
173 Type = Type.getQualifiedType(QualType::Const);
174 break;
175 }
176 }
177
178 return Type;
Reid Spencer5f016e22007-07-11 17:01:13 +0000179}
180
181/// GetBuiltinType - Return the type for the specified builtin.
Chris Lattner22b73ba2007-10-10 23:42:28 +0000182QualType Builtin::Context::GetBuiltinType(unsigned id,
183 ASTContext &Context) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000184 const char *TypeStr = GetRecord(id).Type;
185
186 llvm::SmallVector<QualType, 8> ArgTypes;
187
188 QualType ResType = DecodeTypeFromStr(TypeStr, Context);
189 while (TypeStr[0] && TypeStr[0] != '.')
Anders Carlssondd1b5162007-11-28 05:19:59 +0000190 ArgTypes.push_back(DecodeTypeFromStr(TypeStr, Context));
191
Reid Spencer5f016e22007-07-11 17:01:13 +0000192 assert((TypeStr[0] != '.' || TypeStr[1] == 0) &&
193 "'.' should only occur at end of builtin type list!");
Steve Naroffe8770422007-08-08 17:48:34 +0000194
195 // handle untyped/variadic arguments "T c99Style();" or "T cppStyle(...);".
196 if (ArgTypes.size() == 0 && TypeStr[0] == '.')
197 return Context.getFunctionTypeNoProto(ResType);
Reid Spencer5f016e22007-07-11 17:01:13 +0000198 return Context.getFunctionType(ResType, &ArgTypes[0], ArgTypes.size(),
199 TypeStr[0] == '.');
200}