r179640 - [4/6] ARM Neon Intrinsic Tablegen Test Generator.
Michael Gottesman
mgottesman at apple.com
Tue Apr 16 15:48:52 PDT 2013
Author: mgottesman
Date: Tue Apr 16 17:48:52 2013
New Revision: 179640
URL: http://llvm.org/viewvc/llvm-project?rev=179640&view=rev
Log:
[4/6] ARM Neon Intrinsic Tablegen Test Generator.
Added code to NeonEmitter::runTests so that GenTest gets all of the needed
arguments to invoke the neon test generation methods.
Reviewed by Bob Wilson.
Modified:
cfe/trunk/utils/TableGen/NeonEmitter.cpp
Modified: cfe/trunk/utils/TableGen/NeonEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/TableGen/NeonEmitter.cpp?rev=179640&r1=179639&r2=179640&view=diff
==============================================================================
--- cfe/trunk/utils/TableGen/NeonEmitter.cpp (original)
+++ cfe/trunk/utils/TableGen/NeonEmitter.cpp Tue Apr 16 17:48:52 2013
@@ -1700,7 +1700,8 @@ void NeonEmitter::runHeader(raw_ostream
static std::string GenTest(const std::string &name,
const std::string &proto,
StringRef outTypeStr, StringRef inTypeStr,
- bool isShift) {
+ bool isShift, bool isHiddenLOp,
+ ClassKind ck, const std::string &InstName) {
assert(!proto.empty() && "");
std::string s;
@@ -1772,10 +1773,13 @@ void NeonEmitter::runTests(raw_ostream &
std::string Proto = R->getValueAsString("Prototype");
std::string Types = R->getValueAsString("Types");
bool isShift = R->getValueAsBit("isShift");
+ std::string InstName = R->getValueAsString("InstName");
+ bool isHiddenLOp = R->getValueAsBit("isHiddenLInst");
SmallVector<StringRef, 16> TypeVec;
ParseTypes(R, Types, TypeVec);
+ ClassKind ck = ClassMap[R->getSuperClasses()[1]];
OpKind kind = OpMap[R->getValueAsDef("Operand")->getName()];
if (kind == OpUnavailable)
continue;
@@ -1790,10 +1794,12 @@ void NeonEmitter::runTests(raw_ostream &
(void)ClassifyType(TypeVec[srcti], inQuad, dummy, dummy);
if (srcti == ti || inQuad != outQuad)
continue;
- OS << GenTest(name, Proto, TypeVec[ti], TypeVec[srcti], isShift);
+ OS << GenTest(name, Proto, TypeVec[ti], TypeVec[srcti],
+ isShift, isHiddenLOp, ck, InstName);
}
} else {
- OS << GenTest(name, Proto, TypeVec[ti], TypeVec[ti], isShift);
+ OS << GenTest(name, Proto, TypeVec[ti], TypeVec[ti],
+ isShift, isHiddenLOp, ck, InstName);
}
}
OS << "\n";
More information about the cfe-commits
mailing list