Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 1 | //===- IntrinsicEmitter.cpp - Generate intrinsic information --------------===// |
| 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 tablegen backend emits information about intrinsic functions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 14 | #include "CodeGenTarget.h" |
Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 15 | #include "IntrinsicEmitter.h" |
| 16 | #include "Record.h" |
Chris Lattner | 18faf5d | 2006-03-13 22:38:57 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/StringExtras.h" |
Jeff Cohen | 71c3bc3 | 2006-03-15 02:51:05 +0000 | [diff] [blame] | 18 | #include <algorithm> |
Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 19 | using namespace llvm; |
| 20 | |
| 21 | //===----------------------------------------------------------------------===// |
Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 22 | // IntrinsicEmitter Implementation |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | |
| 25 | void IntrinsicEmitter::run(std::ostream &OS) { |
| 26 | EmitSourceFileHeader("Intrinsic Function Source Fragment", OS); |
| 27 | |
| 28 | std::vector<CodeGenIntrinsic> Ints = LoadIntrinsics(Records); |
| 29 | |
| 30 | // Emit the enum information. |
| 31 | EmitEnumInfo(Ints, OS); |
Chris Lattner | fda6aff | 2006-03-15 01:55:21 +0000 | [diff] [blame] | 32 | |
| 33 | // Emit the intrinsic ID -> name table. |
| 34 | EmitIntrinsicToNameTable(Ints, OS); |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 35 | |
| 36 | // Emit the function name recognizer. |
| 37 | EmitFnNameRecognizer(Ints, OS); |
Chris Lattner | fda6aff | 2006-03-15 01:55:21 +0000 | [diff] [blame] | 38 | |
Chris Lattner | f97a00e | 2006-03-09 22:05:04 +0000 | [diff] [blame] | 39 | // Emit the intrinsic verifier. |
| 40 | EmitVerifier(Ints, OS); |
Chris Lattner | 6448ee4 | 2006-03-09 22:30:49 +0000 | [diff] [blame] | 41 | |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 42 | // Emit the intrinsic declaration generator. |
| 43 | EmitGenerator(Ints, OS); |
| 44 | |
Chris Lattner | 6448ee4 | 2006-03-09 22:30:49 +0000 | [diff] [blame] | 45 | // Emit mod/ref info for each function. |
| 46 | EmitModRefInfo(Ints, OS); |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 47 | |
Chris Lattner | 7056de3 | 2006-03-24 01:13:55 +0000 | [diff] [blame] | 48 | // Emit table of non-memory accessing intrinsics. |
| 49 | EmitNoMemoryInfo(Ints, OS); |
| 50 | |
| 51 | // Emit side effect info for each intrinsic. |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 52 | EmitSideEffectInfo(Ints, OS); |
Chris Lattner | 022f64f | 2006-03-13 23:08:44 +0000 | [diff] [blame] | 53 | |
| 54 | // Emit a list of intrinsics with corresponding GCC builtins. |
| 55 | EmitGCCBuiltinList(Ints, OS); |
Chris Lattner | 3f8b891 | 2006-03-15 01:33:26 +0000 | [diff] [blame] | 56 | |
| 57 | // Emit code to translate GCC builtins into LLVM intrinsics. |
| 58 | EmitIntrinsicToGCCBuiltinMap(Ints, OS); |
Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void IntrinsicEmitter::EmitEnumInfo(const std::vector<CodeGenIntrinsic> &Ints, |
| 62 | std::ostream &OS) { |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 63 | OS << "// Enum values for Intrinsics.h\n"; |
Chris Lattner | 9e493cf | 2006-03-03 02:32:46 +0000 | [diff] [blame] | 64 | OS << "#ifdef GET_INTRINSIC_ENUM_VALUES\n"; |
| 65 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 66 | OS << " " << Ints[i].EnumName; |
| 67 | OS << ((i != e-1) ? ", " : " "); |
| 68 | OS << std::string(40-Ints[i].EnumName.size(), ' ') |
| 69 | << "// " << Ints[i].Name << "\n"; |
| 70 | } |
| 71 | OS << "#endif\n\n"; |
| 72 | } |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 73 | |
| 74 | void IntrinsicEmitter:: |
| 75 | EmitFnNameRecognizer(const std::vector<CodeGenIntrinsic> &Ints, |
| 76 | std::ostream &OS) { |
| 77 | // Build a function name -> intrinsic name mapping. |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 78 | std::map<std::string, unsigned> IntMapping; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 79 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 80 | IntMapping[Ints[i].Name] = i; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 81 | |
| 82 | OS << "// Function name -> enum value recognizer code.\n"; |
| 83 | OS << "#ifdef GET_FUNCTION_RECOGNIZER\n"; |
| 84 | OS << " switch (Name[5]) {\n"; |
Chris Lattner | 3b51580 | 2007-02-15 19:17:16 +0000 | [diff] [blame] | 85 | OS << " default:\n"; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 86 | // Emit the intrinsics in sorted order. |
| 87 | char LastChar = 0; |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 88 | for (std::map<std::string, unsigned>::iterator I = IntMapping.begin(), |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 89 | E = IntMapping.end(); I != E; ++I) { |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 90 | if (I->first[5] != LastChar) { |
| 91 | LastChar = I->first[5]; |
Chris Lattner | 3b51580 | 2007-02-15 19:17:16 +0000 | [diff] [blame] | 92 | OS << " break;\n"; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 93 | OS << " case '" << LastChar << "':\n"; |
| 94 | } |
| 95 | |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 96 | // For overloaded intrinsics, only the prefix needs to match |
| 97 | if (Ints[I->second].isOverloaded) |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 98 | OS << " if (Len > " << I->first.size() |
| 99 | << " && !memcmp(Name, \"" << I->first << ".\", " |
| 100 | << (I->first.size() + 1) << ")) return Intrinsic::" |
| 101 | << Ints[I->second].EnumName << ";\n"; |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 102 | else |
| 103 | OS << " if (Len == " << I->first.size() |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 104 | << " && !memcmp(Name, \"" << I->first << "\", " |
| 105 | << I->first.size() << ")) return Intrinsic::" |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 106 | << Ints[I->second].EnumName << ";\n"; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 107 | } |
| 108 | OS << " }\n"; |
Chris Lattner | f97a00e | 2006-03-09 22:05:04 +0000 | [diff] [blame] | 109 | OS << "#endif\n\n"; |
| 110 | } |
| 111 | |
Chris Lattner | fda6aff | 2006-03-15 01:55:21 +0000 | [diff] [blame] | 112 | void IntrinsicEmitter:: |
| 113 | EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, |
| 114 | std::ostream &OS) { |
Chris Lattner | fda6aff | 2006-03-15 01:55:21 +0000 | [diff] [blame] | 115 | OS << "// Intrinsic ID to name table\n"; |
| 116 | OS << "#ifdef GET_INTRINSIC_NAME_TABLE\n"; |
| 117 | OS << " // Note that entry #0 is the invalid intrinsic!\n"; |
Evan Cheng | f065a6f | 2006-03-28 22:25:56 +0000 | [diff] [blame] | 118 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) |
| 119 | OS << " \"" << Ints[i].Name << "\",\n"; |
Chris Lattner | fda6aff | 2006-03-15 01:55:21 +0000 | [diff] [blame] | 120 | OS << "#endif\n\n"; |
| 121 | } |
| 122 | |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 123 | static void EmitTypeForValueType(std::ostream &OS, MVT::ValueType VT) { |
| 124 | if (MVT::isInteger(VT)) { |
| 125 | unsigned BitWidth = MVT::getSizeInBits(VT); |
| 126 | OS << "IntegerType::get(" << BitWidth << ")"; |
| 127 | } else if (VT == MVT::Other) { |
| 128 | // MVT::OtherVT is used to mean the empty struct type here. |
| 129 | OS << "StructType::get(std::vector<const Type *>())"; |
| 130 | } else if (VT == MVT::f32) { |
| 131 | OS << "Type::FloatTy"; |
| 132 | } else if (VT == MVT::f64) { |
| 133 | OS << "Type::DoubleTy"; |
| 134 | } else if (VT == MVT::isVoid) { |
| 135 | OS << "Type::VoidTy"; |
| 136 | } else { |
| 137 | assert(false && "Unsupported ValueType!"); |
Chris Lattner | 18faf5d | 2006-03-13 22:38:57 +0000 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
Reid Spencer | 84c614d | 2007-05-22 19:30:31 +0000 | [diff] [blame] | 141 | static void EmitTypeGenerate(std::ostream &OS, Record *ArgType, |
| 142 | unsigned &ArgNo) { |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 143 | MVT::ValueType VT = getValueType(ArgType->getValueAsDef("VT")); |
| 144 | |
| 145 | if (ArgType->isSubClassOf("LLVMMatchType")) { |
| 146 | unsigned Number = ArgType->getValueAsInt("Number"); |
| 147 | assert(Number < ArgNo && "Invalid matching number!"); |
| 148 | OS << "Tys[" << Number << "]"; |
Dan Gohman | 0fee3ff | 2007-08-16 21:57:19 +0000 | [diff] [blame^] | 149 | } else if (VT == MVT::iAny || VT == MVT::fAny) { |
Reid Spencer | 84c614d | 2007-05-22 19:30:31 +0000 | [diff] [blame] | 150 | // NOTE: The ArgNo variable here is not the absolute argument number, it is |
| 151 | // the index of the "arbitrary" type in the Tys array passed to the |
| 152 | // Intrinsic::getDeclaration function. Consequently, we only want to |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 153 | // increment it when we actually hit an overloaded type. Getting this wrong |
| 154 | // leads to very subtle bugs! |
| 155 | OS << "Tys[" << ArgNo++ << "]"; |
| 156 | } else if (MVT::isVector(VT)) { |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 157 | OS << "VectorType::get("; |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 158 | EmitTypeForValueType(OS, MVT::getVectorElementType(VT)); |
| 159 | OS << ", " << MVT::getVectorNumElements(VT) << ")"; |
| 160 | } else if (VT == MVT::iPTR) { |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 161 | OS << "PointerType::get("; |
Reid Spencer | c4de3de | 2007-04-01 07:20:02 +0000 | [diff] [blame] | 162 | EmitTypeGenerate(OS, ArgType->getValueAsDef("ElTy"), ArgNo); |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 163 | OS << ")"; |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 164 | } else if (VT == MVT::isVoid) { |
| 165 | if (ArgNo == 0) |
| 166 | OS << "Type::VoidTy"; |
| 167 | else |
| 168 | // MVT::isVoid is used to mean varargs here. |
| 169 | OS << "..."; |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 170 | } else { |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 171 | EmitTypeForValueType(OS, VT); |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
Chris Lattner | c4d9b24 | 2006-03-31 04:24:58 +0000 | [diff] [blame] | 175 | /// RecordListComparator - Provide a determinstic comparator for lists of |
| 176 | /// records. |
| 177 | namespace { |
| 178 | struct RecordListComparator { |
| 179 | bool operator()(const std::vector<Record*> &LHS, |
| 180 | const std::vector<Record*> &RHS) const { |
| 181 | unsigned i = 0; |
| 182 | do { |
| 183 | if (i == RHS.size()) return false; // RHS is shorter than LHS. |
| 184 | if (LHS[i] != RHS[i]) |
| 185 | return LHS[i]->getName() < RHS[i]->getName(); |
| 186 | } while (++i != LHS.size()); |
| 187 | |
| 188 | return i != RHS.size(); |
| 189 | } |
| 190 | }; |
| 191 | } |
| 192 | |
Chris Lattner | f97a00e | 2006-03-09 22:05:04 +0000 | [diff] [blame] | 193 | void IntrinsicEmitter::EmitVerifier(const std::vector<CodeGenIntrinsic> &Ints, |
| 194 | std::ostream &OS) { |
| 195 | OS << "// Verifier::visitIntrinsicFunctionCall code.\n"; |
| 196 | OS << "#ifdef GET_INTRINSIC_VERIFIER\n"; |
| 197 | OS << " switch (ID) {\n"; |
| 198 | OS << " default: assert(0 && \"Invalid intrinsic!\");\n"; |
Chris Lattner | c4d9b24 | 2006-03-31 04:24:58 +0000 | [diff] [blame] | 199 | |
| 200 | // This checking can emit a lot of very common code. To reduce the amount of |
| 201 | // code that we emit, batch up cases that have identical types. This avoids |
| 202 | // problems where GCC can run out of memory compiling Verifier.cpp. |
| 203 | typedef std::map<std::vector<Record*>, std::vector<unsigned>, |
| 204 | RecordListComparator> MapTy; |
| 205 | MapTy UniqueArgInfos; |
| 206 | |
| 207 | // Compute the unique argument type info. |
| 208 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) |
| 209 | UniqueArgInfos[Ints[i].ArgTypeDefs].push_back(i); |
| 210 | |
| 211 | // Loop through the array, emitting one comparison for each batch. |
| 212 | for (MapTy::iterator I = UniqueArgInfos.begin(), |
| 213 | E = UniqueArgInfos.end(); I != E; ++I) { |
| 214 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) { |
| 215 | OS << " case Intrinsic::" << Ints[I->second[i]].EnumName << ":\t\t// " |
| 216 | << Ints[I->second[i]].Name << "\n"; |
| 217 | } |
Chris Lattner | f124b46 | 2006-03-31 04:48:26 +0000 | [diff] [blame] | 218 | |
Chris Lattner | c4d9b24 | 2006-03-31 04:24:58 +0000 | [diff] [blame] | 219 | const std::vector<Record*> &ArgTypes = I->first; |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 220 | OS << " VerifyIntrinsicPrototype(ID, IF, " << ArgTypes.size() << ", "; |
Jim Laskey | 95d97b9 | 2007-02-06 18:30:58 +0000 | [diff] [blame] | 221 | for (unsigned j = 0; j != ArgTypes.size(); ++j) { |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 222 | Record *ArgType = ArgTypes[j]; |
| 223 | if (ArgType->isSubClassOf("LLVMMatchType")) { |
| 224 | unsigned Number = ArgType->getValueAsInt("Number"); |
| 225 | assert(Number < j && "Invalid matching number!"); |
| 226 | OS << "~" << Number; |
| 227 | } else { |
| 228 | MVT::ValueType VT = getValueType(ArgType->getValueAsDef("VT")); |
| 229 | OS << getEnumName(VT); |
| 230 | if (VT == MVT::isVoid && j != 0 && j != ArgTypes.size()-1) |
Jim Laskey | 95d97b9 | 2007-02-06 18:30:58 +0000 | [diff] [blame] | 231 | throw "Var arg type not last argument"; |
Jim Laskey | 95d97b9 | 2007-02-06 18:30:58 +0000 | [diff] [blame] | 232 | } |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 233 | if (j != ArgTypes.size()-1) |
| 234 | OS << ", "; |
Jim Laskey | 95d97b9 | 2007-02-06 18:30:58 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 237 | OS << ");\n"; |
Chris Lattner | f97a00e | 2006-03-09 22:05:04 +0000 | [diff] [blame] | 238 | OS << " break;\n"; |
| 239 | } |
| 240 | OS << " }\n"; |
| 241 | OS << "#endif\n\n"; |
Chris Lattner | 9b843b2 | 2006-03-09 20:34:19 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 244 | void IntrinsicEmitter::EmitGenerator(const std::vector<CodeGenIntrinsic> &Ints, |
| 245 | std::ostream &OS) { |
| 246 | OS << "// Code for generating Intrinsic function declarations.\n"; |
| 247 | OS << "#ifdef GET_INTRINSIC_GENERATOR\n"; |
| 248 | OS << " switch (id) {\n"; |
| 249 | OS << " default: assert(0 && \"Invalid intrinsic!\");\n"; |
| 250 | |
| 251 | // Similar to GET_INTRINSIC_VERIFIER, batch up cases that have identical |
| 252 | // types. |
| 253 | typedef std::map<std::vector<Record*>, std::vector<unsigned>, |
| 254 | RecordListComparator> MapTy; |
| 255 | MapTy UniqueArgInfos; |
| 256 | |
| 257 | // Compute the unique argument type info. |
| 258 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) |
| 259 | UniqueArgInfos[Ints[i].ArgTypeDefs].push_back(i); |
| 260 | |
| 261 | // Loop through the array, emitting one generator for each batch. |
| 262 | for (MapTy::iterator I = UniqueArgInfos.begin(), |
| 263 | E = UniqueArgInfos.end(); I != E; ++I) { |
| 264 | for (unsigned i = 0, e = I->second.size(); i != e; ++i) { |
| 265 | OS << " case Intrinsic::" << Ints[I->second[i]].EnumName << ":\t\t// " |
| 266 | << Ints[I->second[i]].Name << "\n"; |
| 267 | } |
| 268 | |
| 269 | const std::vector<Record*> &ArgTypes = I->first; |
| 270 | unsigned N = ArgTypes.size(); |
| 271 | |
Chandler Carruth | 6994040 | 2007-08-04 01:51:18 +0000 | [diff] [blame] | 272 | if (N > 1 && |
| 273 | getValueType(ArgTypes[N-1]->getValueAsDef("VT")) == MVT::isVoid) { |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 274 | OS << " IsVarArg = true;\n"; |
| 275 | --N; |
| 276 | } |
| 277 | |
Reid Spencer | 84c614d | 2007-05-22 19:30:31 +0000 | [diff] [blame] | 278 | unsigned ArgNo = 0; |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 279 | OS << " ResultTy = "; |
Reid Spencer | 84c614d | 2007-05-22 19:30:31 +0000 | [diff] [blame] | 280 | EmitTypeGenerate(OS, ArgTypes[0], ArgNo); |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 281 | OS << ";\n"; |
| 282 | |
| 283 | for (unsigned j = 1; j != N; ++j) { |
| 284 | OS << " ArgTys.push_back("; |
Reid Spencer | 84c614d | 2007-05-22 19:30:31 +0000 | [diff] [blame] | 285 | EmitTypeGenerate(OS, ArgTypes[j], ArgNo); |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 286 | OS << ");\n"; |
| 287 | } |
Jim Laskey | 95af592 | 2007-02-07 20:38:26 +0000 | [diff] [blame] | 288 | OS << " break;\n"; |
| 289 | } |
| 290 | OS << " }\n"; |
| 291 | OS << "#endif\n\n"; |
| 292 | } |
| 293 | |
Chris Lattner | 6448ee4 | 2006-03-09 22:30:49 +0000 | [diff] [blame] | 294 | void IntrinsicEmitter::EmitModRefInfo(const std::vector<CodeGenIntrinsic> &Ints, |
| 295 | std::ostream &OS) { |
| 296 | OS << "// BasicAliasAnalysis code.\n"; |
| 297 | OS << "#ifdef GET_MODREF_BEHAVIOR\n"; |
| 298 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 299 | switch (Ints[i].ModRef) { |
| 300 | default: break; |
| 301 | case CodeGenIntrinsic::NoMem: |
Chandler Carruth | a583990 | 2007-08-06 20:57:16 +0000 | [diff] [blame] | 302 | OS << " NoMemoryIntrinsics->set(Intrinsic::" << Ints[i].EnumName << ");\n"; |
Chris Lattner | 6448ee4 | 2006-03-09 22:30:49 +0000 | [diff] [blame] | 303 | break; |
| 304 | case CodeGenIntrinsic::ReadArgMem: |
| 305 | case CodeGenIntrinsic::ReadMem: |
Chandler Carruth | a583990 | 2007-08-06 20:57:16 +0000 | [diff] [blame] | 306 | OS << " OnlyReadsMemoryIntrinsics->set(Intrinsic::" << Ints[i].EnumName << ");\n"; |
Chris Lattner | 6448ee4 | 2006-03-09 22:30:49 +0000 | [diff] [blame] | 307 | break; |
| 308 | } |
| 309 | } |
| 310 | OS << "#endif\n\n"; |
| 311 | } |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 312 | |
| 313 | void IntrinsicEmitter:: |
Chris Lattner | 7056de3 | 2006-03-24 01:13:55 +0000 | [diff] [blame] | 314 | EmitNoMemoryInfo(const std::vector<CodeGenIntrinsic> &Ints, std::ostream &OS) { |
| 315 | OS << "// SelectionDAGIsel code.\n"; |
| 316 | OS << "#ifdef GET_NO_MEMORY_INTRINSICS\n"; |
| 317 | OS << " switch (IntrinsicID) {\n"; |
| 318 | OS << " default: break;\n"; |
| 319 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 320 | switch (Ints[i].ModRef) { |
| 321 | default: break; |
| 322 | case CodeGenIntrinsic::NoMem: |
| 323 | OS << " case Intrinsic::" << Ints[i].EnumName << ":\n"; |
| 324 | break; |
| 325 | } |
| 326 | } |
Dan Gohman | face9e5 | 2007-07-26 15:11:00 +0000 | [diff] [blame] | 327 | OS << " return true; // These intrinsics do not reference memory.\n"; |
Chris Lattner | 7056de3 | 2006-03-24 01:13:55 +0000 | [diff] [blame] | 328 | OS << " }\n"; |
| 329 | OS << "#endif\n\n"; |
| 330 | } |
| 331 | |
| 332 | void IntrinsicEmitter:: |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 333 | EmitSideEffectInfo(const std::vector<CodeGenIntrinsic> &Ints, std::ostream &OS){ |
Chris Lattner | 5348e39 | 2006-04-02 03:35:30 +0000 | [diff] [blame] | 334 | OS << "// Return true if doesn't access or only reads memory.\n"; |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 335 | OS << "#ifdef GET_SIDE_EFFECT_INFO\n"; |
Chris Lattner | 5348e39 | 2006-04-02 03:35:30 +0000 | [diff] [blame] | 336 | OS << " switch (IntrinsicID) {\n"; |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 337 | OS << " default: break;\n"; |
| 338 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 339 | switch (Ints[i].ModRef) { |
Chris Lattner | 022f64f | 2006-03-13 23:08:44 +0000 | [diff] [blame] | 340 | default: break; |
| 341 | case CodeGenIntrinsic::NoMem: |
| 342 | case CodeGenIntrinsic::ReadArgMem: |
| 343 | case CodeGenIntrinsic::ReadMem: |
| 344 | OS << " case Intrinsic::" << Ints[i].EnumName << ":\n"; |
| 345 | break; |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 346 | } |
| 347 | } |
| 348 | OS << " return true; // These intrinsics have no side effects.\n"; |
| 349 | OS << " }\n"; |
| 350 | OS << "#endif\n\n"; |
Chris Lattner | 4e5f359 | 2006-03-09 22:37:52 +0000 | [diff] [blame] | 351 | } |
Chris Lattner | 022f64f | 2006-03-13 23:08:44 +0000 | [diff] [blame] | 352 | |
| 353 | void IntrinsicEmitter:: |
| 354 | EmitGCCBuiltinList(const std::vector<CodeGenIntrinsic> &Ints, std::ostream &OS){ |
| 355 | OS << "// Get the GCC builtin that corresponds to an LLVM intrinsic.\n"; |
| 356 | OS << "#ifdef GET_GCC_BUILTIN_NAME\n"; |
| 357 | OS << " switch (F->getIntrinsicID()) {\n"; |
| 358 | OS << " default: BuiltinName = \"\"; break;\n"; |
| 359 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 360 | if (!Ints[i].GCCBuiltinName.empty()) { |
| 361 | OS << " case Intrinsic::" << Ints[i].EnumName << ": BuiltinName = \"" |
| 362 | << Ints[i].GCCBuiltinName << "\"; break;\n"; |
| 363 | } |
| 364 | } |
| 365 | OS << " }\n"; |
| 366 | OS << "#endif\n\n"; |
Reid Spencer | 767a25b | 2006-03-14 05:59:52 +0000 | [diff] [blame] | 367 | } |
Chris Lattner | 3f8b891 | 2006-03-15 01:33:26 +0000 | [diff] [blame] | 368 | |
| 369 | void IntrinsicEmitter:: |
| 370 | EmitIntrinsicToGCCBuiltinMap(const std::vector<CodeGenIntrinsic> &Ints, |
| 371 | std::ostream &OS) { |
| 372 | typedef std::map<std::pair<std::string, std::string>, std::string> BIMTy; |
| 373 | BIMTy BuiltinMap; |
| 374 | for (unsigned i = 0, e = Ints.size(); i != e; ++i) { |
| 375 | if (!Ints[i].GCCBuiltinName.empty()) { |
| 376 | std::pair<std::string, std::string> Key(Ints[i].GCCBuiltinName, |
| 377 | Ints[i].TargetPrefix); |
| 378 | if (!BuiltinMap.insert(std::make_pair(Key, Ints[i].EnumName)).second) |
| 379 | throw "Intrinsic '" + Ints[i].TheDef->getName() + |
| 380 | "': duplicate GCC builtin name!"; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | OS << "// Get the LLVM intrinsic that corresponds to a GCC builtin.\n"; |
| 385 | OS << "// This is used by the C front-end. The GCC builtin name is passed\n"; |
| 386 | OS << "// in as BuiltinName, and a target prefix (e.g. 'ppc') is passed\n"; |
| 387 | OS << "// in as TargetPrefix. The result is assigned to 'IntrinsicID'.\n"; |
| 388 | OS << "#ifdef GET_LLVM_INTRINSIC_FOR_GCC_BUILTIN\n"; |
| 389 | OS << " if (0);\n"; |
| 390 | // Note: this could emit significantly better code if we cared. |
| 391 | for (BIMTy::iterator I = BuiltinMap.begin(), E = BuiltinMap.end();I != E;++I){ |
| 392 | OS << " else if ("; |
| 393 | if (!I->first.second.empty()) { |
| 394 | // Emit this as a strcmp, so it can be constant folded by the FE. |
| 395 | OS << "!strcmp(TargetPrefix, \"" << I->first.second << "\") &&\n" |
| 396 | << " "; |
| 397 | } |
| 398 | OS << "!strcmp(BuiltinName, \"" << I->first.first << "\"))\n"; |
Chris Lattner | ad45b00 | 2006-03-15 02:05:38 +0000 | [diff] [blame] | 399 | OS << " IntrinsicID = Intrinsic::" << I->second << ";\n"; |
Chris Lattner | 3f8b891 | 2006-03-15 01:33:26 +0000 | [diff] [blame] | 400 | } |
| 401 | OS << " else\n"; |
| 402 | OS << " IntrinsicID = Intrinsic::not_intrinsic;\n"; |
| 403 | OS << "#endif\n\n"; |
| 404 | } |