Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attrib...
[oota-llvm.git] / utils / TableGen / IntrinsicEmitter.cpp
1 //===- IntrinsicEmitter.cpp - Generate intrinsic 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 tablegen backend emits information about intrinsic functions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "CodeGenIntrinsics.h"
15 #include "CodeGenTarget.h"
16 #include "SequenceToOffsetTable.h"
17 #include "llvm/ADT/StringExtras.h"
18 #include "llvm/TableGen/Error.h"
19 #include "llvm/TableGen/Record.h"
20 #include "llvm/TableGen/StringMatcher.h"
21 #include "llvm/TableGen/TableGenBackend.h"
22 #include <algorithm>
23 using namespace llvm;
24
25 namespace {
26 class IntrinsicEmitter {
27   RecordKeeper &Records;
28   bool TargetOnly;
29   std::string TargetPrefix;
30
31 public:
32   IntrinsicEmitter(RecordKeeper &R, bool T)
33     : Records(R), TargetOnly(T) {}
34
35   void run(raw_ostream &OS);
36
37   void EmitPrefix(raw_ostream &OS);
38
39   void EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints,
40                     raw_ostream &OS);
41
42   void EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints,
43                             raw_ostream &OS);
44   void EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints,
45                                 raw_ostream &OS);
46   void EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints,
47                                     raw_ostream &OS);
48   void EmitVerifier(const std::vector<CodeGenIntrinsic> &Ints,
49                     raw_ostream &OS);
50   void EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints,
51                      raw_ostream &OS);
52   void EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints,
53                       raw_ostream &OS);
54   void EmitModRefBehavior(const std::vector<CodeGenIntrinsic> &Ints,
55                           raw_ostream &OS);
56   void EmitIntrinsicToGCCBuiltinMap(const std::vector<CodeGenIntrinsic> &Ints,
57                                     raw_ostream &OS);
58   void EmitSuffix(raw_ostream &OS);
59 };
60 } // End anonymous namespace
61
62 //===----------------------------------------------------------------------===//
63 // IntrinsicEmitter Implementation
64 //===----------------------------------------------------------------------===//
65
66 void IntrinsicEmitter::run(raw_ostream &OS) {
67   emitSourceFileHeader("Intrinsic Function Source Fragment", OS);
68
69   std::vector<CodeGenIntrinsic> Ints = LoadIntrinsics(Records, TargetOnly);
70
71   if (TargetOnly && !Ints.empty())
72     TargetPrefix = Ints[0].TargetPrefix;
73
74   EmitPrefix(OS);
75
76   // Emit the enum information.
77   EmitEnumInfo(Ints, OS);
78
79   // Emit the intrinsic ID -> name table.
80   EmitIntrinsicToNameTable(Ints, OS);
81
82   // Emit the intrinsic ID -> overload table.
83   EmitIntrinsicToOverloadTable(Ints, OS);
84
85   // Emit the function name recognizer.
86   EmitFnNameRecognizer(Ints, OS);
87   
88   // Emit the intrinsic declaration generator.
89   EmitGenerator(Ints, OS);
90   
91   // Emit the intrinsic parameter attributes.
92   EmitAttributes(Ints, OS);
93
94   // Emit intrinsic alias analysis mod/ref behavior.
95   EmitModRefBehavior(Ints, OS);
96
97   // Emit code to translate GCC builtins into LLVM intrinsics.
98   EmitIntrinsicToGCCBuiltinMap(Ints, OS);
99
100   EmitSuffix(OS);
101 }
102
103 void IntrinsicEmitter::EmitPrefix(raw_ostream &OS) {
104   OS << "// VisualStudio defines setjmp as _setjmp\n"
105         "#if defined(_MSC_VER) && defined(setjmp) && \\\n"
106         "                         !defined(setjmp_undefined_for_msvc)\n"
107         "#  pragma push_macro(\"setjmp\")\n"
108         "#  undef setjmp\n"
109         "#  define setjmp_undefined_for_msvc\n"
110         "#endif\n\n";
111 }
112
113 void IntrinsicEmitter::EmitSuffix(raw_ostream &OS) {
114   OS << "#if defined(_MSC_VER) && defined(setjmp_undefined_for_msvc)\n"
115         "// let's return it to _setjmp state\n"
116         "#  pragma pop_macro(\"setjmp\")\n"
117         "#  undef setjmp_undefined_for_msvc\n"
118         "#endif\n\n";
119 }
120
121 void IntrinsicEmitter::EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints,
122                                     raw_ostream &OS) {
123   OS << "// Enum values for Intrinsics.h\n";
124   OS << "#ifdef GET_INTRINSIC_ENUM_VALUES\n";
125   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
126     OS << "    " << Ints[i].EnumName;
127     OS << ((i != e-1) ? ", " : "  ");
128     OS << std::string(40-Ints[i].EnumName.size(), ' ') 
129       << "// " << Ints[i].Name << "\n";
130   }
131   OS << "#endif\n\n";
132 }
133
134 void IntrinsicEmitter::
135 EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, 
136                      raw_ostream &OS) {
137   // Build a 'first character of function name' -> intrinsic # mapping.
138   std::map<char, std::vector<unsigned> > IntMapping;
139   for (unsigned i = 0, e = Ints.size(); i != e; ++i)
140     IntMapping[Ints[i].Name[5]].push_back(i);
141   
142   OS << "// Function name -> enum value recognizer code.\n";
143   OS << "#ifdef GET_FUNCTION_RECOGNIZER\n";
144   OS << "  StringRef NameR(Name+6, Len-6);   // Skip over 'llvm.'\n";
145   OS << "  switch (Name[5]) {                  // Dispatch on first letter.\n";
146   OS << "  default: break;\n";
147   // Emit the intrinsic matching stuff by first letter.
148   for (std::map<char, std::vector<unsigned> >::iterator I = IntMapping.begin(),
149        E = IntMapping.end(); I != E; ++I) {
150     OS << "  case '" << I->first << "':\n";
151     std::vector<unsigned> &IntList = I->second;
152
153     // Emit all the overloaded intrinsics first, build a table of the
154     // non-overloaded ones.
155     std::vector<StringMatcher::StringPair> MatchTable;
156     
157     for (unsigned i = 0, e = IntList.size(); i != e; ++i) {
158       unsigned IntNo = IntList[i];
159       std::string Result = "return " + TargetPrefix + "Intrinsic::" +
160         Ints[IntNo].EnumName + ";";
161
162       if (!Ints[IntNo].isOverloaded) {
163         MatchTable.push_back(std::make_pair(Ints[IntNo].Name.substr(6),Result));
164         continue;
165       }
166
167       // For overloaded intrinsics, only the prefix needs to match
168       std::string TheStr = Ints[IntNo].Name.substr(6);
169       TheStr += '.';  // Require "bswap." instead of bswap.
170       OS << "    if (NameR.startswith(\"" << TheStr << "\")) "
171          << Result << '\n';
172     }
173     
174     // Emit the matcher logic for the fixed length strings.
175     StringMatcher("NameR", MatchTable, OS).Emit(1);
176     OS << "    break;  // end of '" << I->first << "' case.\n";
177   }
178   
179   OS << "  }\n";
180   OS << "#endif\n\n";
181 }
182
183 void IntrinsicEmitter::
184 EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, 
185                          raw_ostream &OS) {
186   OS << "// Intrinsic ID to name table\n";
187   OS << "#ifdef GET_INTRINSIC_NAME_TABLE\n";
188   OS << "  // Note that entry #0 is the invalid intrinsic!\n";
189   for (unsigned i = 0, e = Ints.size(); i != e; ++i)
190     OS << "  \"" << Ints[i].Name << "\",\n";
191   OS << "#endif\n\n";
192 }
193
194 void IntrinsicEmitter::
195 EmitIntrinsicToOverloadTable(const std::vector<CodeGenIntrinsic> &Ints, 
196                          raw_ostream &OS) {
197   OS << "// Intrinsic ID to overload bitset\n";
198   OS << "#ifdef GET_INTRINSIC_OVERLOAD_TABLE\n";
199   OS << "static const uint8_t OTable[] = {\n";
200   OS << "  0";
201   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
202     // Add one to the index so we emit a null bit for the invalid #0 intrinsic.
203     if ((i+1)%8 == 0)
204       OS << ",\n  0";
205     if (Ints[i].isOverloaded)
206       OS << " | (1<<" << (i+1)%8 << ')';
207   }
208   OS << "\n};\n\n";
209   // OTable contains a true bit at the position if the intrinsic is overloaded.
210   OS << "return (OTable[id/8] & (1 << (id%8))) != 0;\n";
211   OS << "#endif\n\n";
212 }
213
214
215 // NOTE: This must be kept in synch with the copy in lib/VMCore/Function.cpp!
216 enum IIT_Info {
217   // Common values should be encoded with 0-15.
218   IIT_Done = 0,
219   IIT_I1   = 1,
220   IIT_I8   = 2,
221   IIT_I16  = 3,
222   IIT_I32  = 4,
223   IIT_I64  = 5,
224   IIT_F32  = 6,
225   IIT_F64  = 7,
226   IIT_V2   = 8,
227   IIT_V4   = 9,
228   IIT_V8   = 10,
229   IIT_V16  = 11,
230   IIT_V32  = 12,
231   IIT_MMX  = 13,
232   IIT_PTR  = 14,
233   IIT_ARG  = 15,
234   
235   // Values from 16+ are only encodable with the inefficient encoding.
236   IIT_METADATA = 16,
237   IIT_EMPTYSTRUCT = 17,
238   IIT_STRUCT2 = 18,
239   IIT_STRUCT3 = 19,
240   IIT_STRUCT4 = 20,
241   IIT_STRUCT5 = 21,
242   IIT_EXTEND_VEC_ARG = 22,
243   IIT_TRUNC_VEC_ARG = 23,
244   IIT_ANYPTR = 24
245 };
246
247
248 static void EncodeFixedValueType(MVT::SimpleValueType VT,
249                                  std::vector<unsigned char> &Sig) {
250   if (EVT(VT).isInteger()) {
251     unsigned BitWidth = EVT(VT).getSizeInBits();
252     switch (BitWidth) {
253     default: PrintFatalError("unhandled integer type width in intrinsic!");
254     case 1: return Sig.push_back(IIT_I1);
255     case 8: return Sig.push_back(IIT_I8);
256     case 16: return Sig.push_back(IIT_I16);
257     case 32: return Sig.push_back(IIT_I32);
258     case 64: return Sig.push_back(IIT_I64);
259     }
260   }
261   
262   switch (VT) {
263   default: PrintFatalError("unhandled MVT in intrinsic!");
264   case MVT::f32: return Sig.push_back(IIT_F32);
265   case MVT::f64: return Sig.push_back(IIT_F64);
266   case MVT::Metadata: return Sig.push_back(IIT_METADATA);
267   case MVT::x86mmx: return Sig.push_back(IIT_MMX);
268   // MVT::OtherVT is used to mean the empty struct type here.
269   case MVT::Other: return Sig.push_back(IIT_EMPTYSTRUCT);
270   }
271 }
272
273 #ifdef _MSC_VER
274 #pragma optimize("",off) // MSVC 2010 optimizer can't deal with this function.
275 #endif 
276
277 static void EncodeFixedType(Record *R, std::vector<unsigned char> &ArgCodes,
278                             std::vector<unsigned char> &Sig) {
279   
280   if (R->isSubClassOf("LLVMMatchType")) {
281     unsigned Number = R->getValueAsInt("Number");
282     assert(Number < ArgCodes.size() && "Invalid matching number!");
283     if (R->isSubClassOf("LLVMExtendedElementVectorType"))
284       Sig.push_back(IIT_EXTEND_VEC_ARG);
285     else if (R->isSubClassOf("LLVMTruncatedElementVectorType"))
286       Sig.push_back(IIT_TRUNC_VEC_ARG);
287     else
288       Sig.push_back(IIT_ARG);
289     return Sig.push_back((Number << 2) | ArgCodes[Number]);
290   }
291   
292   MVT::SimpleValueType VT = getValueType(R->getValueAsDef("VT"));
293
294   unsigned Tmp = 0;
295   switch (VT) {
296   default: break;
297   case MVT::iPTRAny: ++Tmp; // FALL THROUGH.
298   case MVT::vAny: ++Tmp; // FALL THROUGH.
299   case MVT::fAny: ++Tmp; // FALL THROUGH.
300   case MVT::iAny: {
301     // If this is an "any" valuetype, then the type is the type of the next
302     // type in the list specified to getIntrinsic().  
303     Sig.push_back(IIT_ARG);
304     
305     // Figure out what arg # this is consuming, and remember what kind it was.
306     unsigned ArgNo = ArgCodes.size();
307     ArgCodes.push_back(Tmp);
308     
309     // Encode what sort of argument it must be in the low 2 bits of the ArgNo.
310     return Sig.push_back((ArgNo << 2) | Tmp);
311   }
312   
313   case MVT::iPTR: {
314     unsigned AddrSpace = 0;
315     if (R->isSubClassOf("LLVMQualPointerType")) {
316       AddrSpace = R->getValueAsInt("AddrSpace");
317       assert(AddrSpace < 256 && "Address space exceeds 255");
318     }
319     if (AddrSpace) {
320       Sig.push_back(IIT_ANYPTR);
321       Sig.push_back(AddrSpace);
322     } else {
323       Sig.push_back(IIT_PTR);
324     }
325     return EncodeFixedType(R->getValueAsDef("ElTy"), ArgCodes, Sig);
326   }
327   }
328   
329   if (EVT(VT).isVector()) {
330     EVT VVT = VT;
331     switch (VVT.getVectorNumElements()) {
332     default: PrintFatalError("unhandled vector type width in intrinsic!");
333     case 2: Sig.push_back(IIT_V2); break;
334     case 4: Sig.push_back(IIT_V4); break;
335     case 8: Sig.push_back(IIT_V8); break;
336     case 16: Sig.push_back(IIT_V16); break;
337     case 32: Sig.push_back(IIT_V32); break;
338     }
339     
340     return EncodeFixedValueType(VVT.getVectorElementType().
341                                 getSimpleVT().SimpleTy, Sig);
342   }
343
344   EncodeFixedValueType(VT, Sig);
345 }
346
347 #ifdef _MSC_VER
348 #pragma optimize("",on)
349 #endif
350
351 /// ComputeFixedEncoding - If we can encode the type signature for this
352 /// intrinsic into 32 bits, return it.  If not, return ~0U.
353 static void ComputeFixedEncoding(const CodeGenIntrinsic &Int,
354                                  std::vector<unsigned char> &TypeSig) {
355   std::vector<unsigned char> ArgCodes;
356   
357   if (Int.IS.RetVTs.empty())
358     TypeSig.push_back(IIT_Done);
359   else if (Int.IS.RetVTs.size() == 1 &&
360            Int.IS.RetVTs[0] == MVT::isVoid)
361     TypeSig.push_back(IIT_Done);
362   else {
363     switch (Int.IS.RetVTs.size()) {
364       case 1: break;
365       case 2: TypeSig.push_back(IIT_STRUCT2); break;
366       case 3: TypeSig.push_back(IIT_STRUCT3); break;
367       case 4: TypeSig.push_back(IIT_STRUCT4); break;
368       case 5: TypeSig.push_back(IIT_STRUCT5); break;
369       default: assert(0 && "Unhandled case in struct");
370     }
371     
372     for (unsigned i = 0, e = Int.IS.RetVTs.size(); i != e; ++i)
373       EncodeFixedType(Int.IS.RetTypeDefs[i], ArgCodes, TypeSig);
374   }
375   
376   for (unsigned i = 0, e = Int.IS.ParamTypeDefs.size(); i != e; ++i)
377     EncodeFixedType(Int.IS.ParamTypeDefs[i], ArgCodes, TypeSig);
378 }
379
380 static void printIITEntry(raw_ostream &OS, unsigned char X) {
381   OS << (unsigned)X;
382 }
383
384 void IntrinsicEmitter::EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, 
385                                      raw_ostream &OS) {
386   // If we can compute a 32-bit fixed encoding for this intrinsic, do so and
387   // capture it in this vector, otherwise store a ~0U.
388   std::vector<unsigned> FixedEncodings;
389   
390   SequenceToOffsetTable<std::vector<unsigned char> > LongEncodingTable;
391   
392   std::vector<unsigned char> TypeSig;
393   
394   // Compute the unique argument type info.
395   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
396     // Get the signature for the intrinsic.
397     TypeSig.clear();
398     ComputeFixedEncoding(Ints[i], TypeSig);
399
400     // Check to see if we can encode it into a 32-bit word.  We can only encode
401     // 8 nibbles into a 32-bit word.
402     if (TypeSig.size() <= 8) {
403       bool Failed = false;
404       unsigned Result = 0;
405       for (unsigned i = 0, e = TypeSig.size(); i != e; ++i) {
406         // If we had an unencodable argument, bail out.
407         if (TypeSig[i] > 15) {
408           Failed = true;
409           break;
410         }
411         Result = (Result << 4) | TypeSig[e-i-1];
412       }
413       
414       // If this could be encoded into a 31-bit word, return it.
415       if (!Failed && (Result >> 31) == 0) {
416         FixedEncodings.push_back(Result);
417         continue;
418       }
419     }
420
421     // Otherwise, we're going to unique the sequence into the
422     // LongEncodingTable, and use its offset in the 32-bit table instead.
423     LongEncodingTable.add(TypeSig);
424       
425     // This is a placehold that we'll replace after the table is laid out.
426     FixedEncodings.push_back(~0U);
427   }
428   
429   LongEncodingTable.layout();
430   
431   OS << "// Global intrinsic function declaration type table.\n";
432   OS << "#ifdef GET_INTRINSIC_GENERATOR_GLOBAL\n";
433
434   OS << "static const unsigned IIT_Table[] = {\n  ";
435   
436   for (unsigned i = 0, e = FixedEncodings.size(); i != e; ++i) {
437     if ((i & 7) == 7)
438       OS << "\n  ";
439     
440     // If the entry fit in the table, just emit it.
441     if (FixedEncodings[i] != ~0U) {
442       OS << "0x" << utohexstr(FixedEncodings[i]) << ", ";
443       continue;
444     }
445     
446     TypeSig.clear();
447     ComputeFixedEncoding(Ints[i], TypeSig);
448
449     
450     // Otherwise, emit the offset into the long encoding table.  We emit it this
451     // way so that it is easier to read the offset in the .def file.
452     OS << "(1U<<31) | " << LongEncodingTable.get(TypeSig) << ", ";
453   }
454   
455   OS << "0\n};\n\n";
456   
457   // Emit the shared table of register lists.
458   OS << "static const unsigned char IIT_LongEncodingTable[] = {\n";
459   if (!LongEncodingTable.empty())
460     LongEncodingTable.emit(OS, printIITEntry);
461   OS << "  255\n};\n\n";
462   
463   OS << "#endif\n\n";  // End of GET_INTRINSIC_GENERATOR_GLOBAL
464 }
465
466 enum ModRefKind {
467   MRK_none,
468   MRK_readonly,
469   MRK_readnone
470 };
471
472 static ModRefKind getModRefKind(const CodeGenIntrinsic &intrinsic) {
473   switch (intrinsic.ModRef) {
474   case CodeGenIntrinsic::NoMem:
475     return MRK_readnone;
476   case CodeGenIntrinsic::ReadArgMem:
477   case CodeGenIntrinsic::ReadMem:
478     return MRK_readonly;
479   case CodeGenIntrinsic::ReadWriteArgMem:
480   case CodeGenIntrinsic::ReadWriteMem:
481     return MRK_none;
482   }
483   llvm_unreachable("bad mod-ref kind");
484 }
485
486 namespace {
487 struct AttributeComparator {
488   bool operator()(const CodeGenIntrinsic *L, const CodeGenIntrinsic *R) const {
489     // Sort throwing intrinsics after non-throwing intrinsics.
490     if (L->canThrow != R->canThrow)
491       return R->canThrow;
492
493     if (L->isNoReturn != R->isNoReturn)
494       return R->isNoReturn;
495
496     // Try to order by readonly/readnone attribute.
497     ModRefKind LK = getModRefKind(*L);
498     ModRefKind RK = getModRefKind(*R);
499     if (LK != RK) return (LK > RK);
500
501     // Order by argument attributes.
502     // This is reliable because each side is already sorted internally.
503     return (L->ArgumentAttributes < R->ArgumentAttributes);
504   }
505 };
506 } // End anonymous namespace
507
508 /// EmitAttributes - This emits the Intrinsic::getAttributes method.
509 void IntrinsicEmitter::
510 EmitAttributes(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS) {
511   OS << "// Add parameter attributes that are not common to all intrinsics.\n";
512   OS << "#ifdef GET_INTRINSIC_ATTRIBUTES\n";
513   if (TargetOnly)
514     OS << "static AttributeSet getAttributes(LLVMContext &C, " << TargetPrefix
515        << "Intrinsic::ID id) {\n";
516   else
517     OS << "AttributeSet Intrinsic::getAttributes(LLVMContext &C, ID id) {\n";
518
519   // Compute the maximum number of attribute arguments and the map
520   typedef std::map<const CodeGenIntrinsic*, unsigned,
521                    AttributeComparator> UniqAttrMapTy;
522   UniqAttrMapTy UniqAttributes;
523   unsigned maxArgAttrs = 0;
524   unsigned AttrNum = 0;
525   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
526     const CodeGenIntrinsic &intrinsic = Ints[i];
527     maxArgAttrs =
528       std::max(maxArgAttrs, unsigned(intrinsic.ArgumentAttributes.size()));
529     unsigned &N = UniqAttributes[&intrinsic];
530     if (N) continue;
531     assert(AttrNum < 256 && "Too many unique attributes for table!");
532     N = ++AttrNum;
533   }
534
535   // Emit an array of AttributeWithIndex.  Most intrinsics will have
536   // at least one entry, for the function itself (index ~1), which is
537   // usually nounwind.
538   OS << "  static const uint8_t IntrinsicsToAttributesMap[] = {\n";
539
540   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
541     const CodeGenIntrinsic &intrinsic = Ints[i];
542
543     OS << "    " << UniqAttributes[&intrinsic] << ", // "
544        << intrinsic.Name << "\n";
545   }
546   OS << "  };\n\n";
547
548   OS << "  AttributeWithIndex AWI[" << maxArgAttrs+1 << "];\n";
549   OS << "  unsigned NumAttrs = 0;\n";
550   OS << "  if (id != 0) {\n";
551   OS << "    SmallVector<Attribute::AttrVal, 8> AttrVec;\n";
552   OS << "    switch(IntrinsicsToAttributesMap[id - ";
553   if (TargetOnly)
554     OS << "Intrinsic::num_intrinsics";
555   else
556     OS << "1";
557   OS << "]) {\n";
558   OS << "    default: llvm_unreachable(\"Invalid attribute number\");\n";
559   for (UniqAttrMapTy::const_iterator I = UniqAttributes.begin(),
560        E = UniqAttributes.end(); I != E; ++I) {
561     OS << "    case " << I->second << ":\n";
562
563     const CodeGenIntrinsic &intrinsic = *(I->first);
564
565     // Keep track of the number of attributes we're writing out.
566     unsigned numAttrs = 0;
567
568     // The argument attributes are alreadys sorted by argument index.
569     unsigned ai = 0, ae = intrinsic.ArgumentAttributes.size();
570     if (ae) {
571       while (ai != ae) {
572         unsigned argNo = intrinsic.ArgumentAttributes[ai].first;
573
574         OS << "      AttrVec.clear();\n";
575
576         do {
577           switch (intrinsic.ArgumentAttributes[ai].second) {
578           case CodeGenIntrinsic::NoCapture:
579             OS << "      AttrVec.push_back(Attribute::NoCapture);\n";
580             break;
581           }
582
583           ++ai;
584         } while (ai != ae && intrinsic.ArgumentAttributes[ai].first == argNo);
585
586         OS << "      AWI[" << numAttrs++ << "] = AttributeWithIndex::get(C, "
587            << argNo+1 << ", AttrVec);\n";
588       }
589     }
590
591     ModRefKind modRef = getModRefKind(intrinsic);
592
593     if (!intrinsic.canThrow || modRef || intrinsic.isNoReturn) {
594       OS << "      AttrVec.clear();\n";
595
596       if (!intrinsic.canThrow)
597         OS << "      AttrVec.push_back(Attribute::NoUnwind);\n";
598       if (intrinsic.isNoReturn)
599         OS << "      AttrVec.push_back(Attribute::NoReturn);\n";
600
601       switch (modRef) {
602       case MRK_none: break;
603       case MRK_readonly:
604         OS << "      AttrVec.push_back(Attribute::ReadOnly);\n";
605         break;
606       case MRK_readnone:
607         OS << "      AttrVec.push_back(Attribute::ReadNone);\n"; 
608         break;
609       }
610       OS << "      AWI[" << numAttrs++ << "] = AttributeWithIndex::get(C, "
611          << "AttributeSet::FunctionIndex, AttrVec);\n";
612     }
613
614     if (numAttrs) {
615       OS << "      NumAttrs = " << numAttrs << ";\n";
616       OS << "      break;\n";
617     } else {
618       OS << "      return AttributeSet();\n";
619     }
620   }
621   
622   OS << "    }\n";
623   OS << "  }\n";
624   OS << "  return AttributeSet::get(C, ArrayRef<AttributeWithIndex>(AWI, "
625              "NumAttrs));\n";
626   OS << "}\n";
627   OS << "#endif // GET_INTRINSIC_ATTRIBUTES\n\n";
628 }
629
630 /// EmitModRefBehavior - Determine intrinsic alias analysis mod/ref behavior.
631 void IntrinsicEmitter::
632 EmitModRefBehavior(const std::vector<CodeGenIntrinsic> &Ints, raw_ostream &OS){
633   OS << "// Determine intrinsic alias analysis mod/ref behavior.\n"
634      << "#ifdef GET_INTRINSIC_MODREF_BEHAVIOR\n"
635      << "assert(iid <= Intrinsic::" << Ints.back().EnumName << " && "
636      << "\"Unknown intrinsic.\");\n\n";
637
638   OS << "static const uint8_t IntrinsicModRefBehavior[] = {\n"
639      << "  /* invalid */ UnknownModRefBehavior,\n";
640   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
641     OS << "  /* " << TargetPrefix << Ints[i].EnumName << " */ ";
642     switch (Ints[i].ModRef) {
643     case CodeGenIntrinsic::NoMem:
644       OS << "DoesNotAccessMemory,\n";
645       break;
646     case CodeGenIntrinsic::ReadArgMem:
647       OS << "OnlyReadsArgumentPointees,\n";
648       break;
649     case CodeGenIntrinsic::ReadMem:
650       OS << "OnlyReadsMemory,\n";
651       break;
652     case CodeGenIntrinsic::ReadWriteArgMem:
653       OS << "OnlyAccessesArgumentPointees,\n";
654       break;
655     case CodeGenIntrinsic::ReadWriteMem:
656       OS << "UnknownModRefBehavior,\n";
657       break;
658     }
659   }
660   OS << "};\n\n"
661      << "return static_cast<ModRefBehavior>(IntrinsicModRefBehavior[iid]);\n"
662      << "#endif // GET_INTRINSIC_MODREF_BEHAVIOR\n\n";
663 }
664
665 /// EmitTargetBuiltins - All of the builtins in the specified map are for the
666 /// same target, and we already checked it.
667 static void EmitTargetBuiltins(const std::map<std::string, std::string> &BIM,
668                                const std::string &TargetPrefix,
669                                raw_ostream &OS) {
670   
671   std::vector<StringMatcher::StringPair> Results;
672   
673   for (std::map<std::string, std::string>::const_iterator I = BIM.begin(),
674        E = BIM.end(); I != E; ++I) {
675     std::string ResultCode =
676     "return " + TargetPrefix + "Intrinsic::" + I->second + ";";
677     Results.push_back(StringMatcher::StringPair(I->first, ResultCode));
678   }
679
680   StringMatcher("BuiltinName", Results, OS).Emit();
681 }
682
683         
684 void IntrinsicEmitter::
685 EmitIntrinsicToGCCBuiltinMap(const std::vector<CodeGenIntrinsic> &Ints, 
686                              raw_ostream &OS) {
687   typedef std::map<std::string, std::map<std::string, std::string> > BIMTy;
688   BIMTy BuiltinMap;
689   for (unsigned i = 0, e = Ints.size(); i != e; ++i) {
690     if (!Ints[i].GCCBuiltinName.empty()) {
691       // Get the map for this target prefix.
692       std::map<std::string, std::string> &BIM =BuiltinMap[Ints[i].TargetPrefix];
693       
694       if (!BIM.insert(std::make_pair(Ints[i].GCCBuiltinName,
695                                      Ints[i].EnumName)).second)
696         PrintFatalError("Intrinsic '" + Ints[i].TheDef->getName() +
697               "': duplicate GCC builtin name!");
698     }
699   }
700   
701   OS << "// Get the LLVM intrinsic that corresponds to a GCC builtin.\n";
702   OS << "// This is used by the C front-end.  The GCC builtin name is passed\n";
703   OS << "// in as BuiltinName, and a target prefix (e.g. 'ppc') is passed\n";
704   OS << "// in as TargetPrefix.  The result is assigned to 'IntrinsicID'.\n";
705   OS << "#ifdef GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN\n";
706   
707   if (TargetOnly) {
708     OS << "static " << TargetPrefix << "Intrinsic::ID "
709        << "getIntrinsicForGCCBuiltin(const char "
710        << "*TargetPrefixStr, const char *BuiltinNameStr) {\n";
711   } else {
712     OS << "Intrinsic::ID Intrinsic::getIntrinsicForGCCBuiltin(const char "
713        << "*TargetPrefixStr, const char *BuiltinNameStr) {\n";
714   }
715   
716   OS << "  StringRef BuiltinName(BuiltinNameStr);\n";
717   OS << "  StringRef TargetPrefix(TargetPrefixStr);\n\n";
718   
719   // Note: this could emit significantly better code if we cared.
720   for (BIMTy::iterator I = BuiltinMap.begin(), E = BuiltinMap.end();I != E;++I){
721     OS << "  ";
722     if (!I->first.empty())
723       OS << "if (TargetPrefix == \"" << I->first << "\") ";
724     else
725       OS << "/* Target Independent Builtins */ ";
726     OS << "{\n";
727
728     // Emit the comparisons for this target prefix.
729     EmitTargetBuiltins(I->second, TargetPrefix, OS);
730     OS << "  }\n";
731   }
732   OS << "  return ";
733   if (!TargetPrefix.empty())
734     OS << "(" << TargetPrefix << "Intrinsic::ID)";
735   OS << "Intrinsic::not_intrinsic;\n";
736   OS << "}\n";
737   OS << "#endif\n\n";
738 }
739
740 namespace llvm {
741
742 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false) {
743   IntrinsicEmitter(RK, TargetOnly).run(OS);
744 }
745
746 } // End llvm namespace