diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-03-31 04:48:26 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-03-31 04:48:26 +0000 |
| commit | 03dfc41ba248601973ca4a048d384408f1a3de65 (patch) | |
| tree | 59991cd0865fc742f50c01732ba4a260ca653066 /llvm/utils/TableGen/IntrinsicEmitter.cpp | |
| parent | b37dfd631c1c5354d4ac91b04e1adc61ad63ca5f (diff) | |
| download | bcm5719-llvm-03dfc41ba248601973ca4a048d384408f1a3de65.tar.gz bcm5719-llvm-03dfc41ba248601973ca4a048d384408f1a3de65.zip | |
Final bugfix for PR724. GCC won't inline varargs functions, so use one to
validate the prototype of intrinsic functions. This prevents GCC from going
crazy and inlining too much stuff, eventually running out of memory.
llvm-svn: 27283
Diffstat (limited to 'llvm/utils/TableGen/IntrinsicEmitter.cpp')
| -rw-r--r-- | llvm/utils/TableGen/IntrinsicEmitter.cpp | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/llvm/utils/TableGen/IntrinsicEmitter.cpp b/llvm/utils/TableGen/IntrinsicEmitter.cpp index f53c8ea8c98..1da361c9340 100644 --- a/llvm/utils/TableGen/IntrinsicEmitter.cpp +++ b/llvm/utils/TableGen/IntrinsicEmitter.cpp @@ -108,22 +108,14 @@ EmitIntrinsicToNameTable(const std::vector<CodeGenIntrinsic> &Ints, OS << "#endif\n\n"; } -static void EmitTypeVerify(std::ostream &OS, const std::string &Val, - Record *ArgType) { - OS << " Assert1(" << Val << "->getTypeID() == " - << ArgType->getValueAsString("TypeVal") << ",\n" - << " \"Illegal intrinsic type!\", IF);\n"; +static void EmitTypeVerify(std::ostream &OS, Record *ArgType) { + OS << "(int)" << ArgType->getValueAsString("TypeVal") << ", "; // If this is a packed type, check that the subtype and size are correct. if (ArgType->isSubClassOf("LLVMPackedType")) { Record *SubType = ArgType->getValueAsDef("ElTy"); - OS << " Assert1(cast<PackedType>(" << Val - << ")->getElementType()->getTypeID() == " - << SubType->getValueAsString("TypeVal") << ",\n" - << " \"Illegal intrinsic type!\", IF);\n"; - OS << " Assert1(cast<PackedType>(" << Val << ")->getNumElements() == " - << ArgType->getValueAsInt("NumElts") << ",\n" - << " \"Illegal intrinsic type!\", IF);\n"; + OS << "(int)" << SubType->getValueAsString("TypeVal") << ", " + << ArgType->getValueAsInt("NumElts") << ", "; } } @@ -170,12 +162,12 @@ void IntrinsicEmitter::EmitVerifier(const std::vector<CodeGenIntrinsic> &Ints, OS << " case Intrinsic::" << Ints[I->second[i]].EnumName << ":\t\t// " << Ints[I->second[i]].Name << "\n"; } + const std::vector<Record*> &ArgTypes = I->first; - OS << " Assert1(FTy->getNumParams() == " << ArgTypes.size()-1 << ",\n" - << " \"Illegal # arguments for intrinsic function!\", IF);\n"; - EmitTypeVerify(OS, "FTy->getReturnType()", ArgTypes[0]); - for (unsigned j = 1; j != ArgTypes.size(); ++j) - EmitTypeVerify(OS, "FTy->getParamType(" + utostr(j-1) + ")", ArgTypes[j]); + OS << " VerifyIntrinsicPrototype(IF, "; + for (unsigned j = 0; j != ArgTypes.size(); ++j) + EmitTypeVerify(OS, ArgTypes[j]); + OS << "-1);\n"; OS << " break;\n"; } OS << " }\n"; |

