summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-07-28 01:52:23 +0000
committerEric Christopher <echristo@apple.com>2010-07-28 01:52:23 +0000
commitbc16827be6d8c29bd9a541444c6fc3bf69ce9b00 (patch)
tree00e952e6814a9006ab6a1de290246318f0dd87c3 /utils
parent81f9121cda099f75e50485e79e8fdb423ae82792 (diff)
downloadllvm-bc16827be6d8c29bd9a541444c6fc3bf69ce9b00.tar.gz
llvm-bc16827be6d8c29bd9a541444c6fc3bf69ce9b00.tar.bz2
llvm-bc16827be6d8c29bd9a541444c6fc3bf69ce9b00.tar.xz
Filter out patterns that have PredicateOperands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109572 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/FastISelEmitter.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/TableGen/FastISelEmitter.cpp b/utils/TableGen/FastISelEmitter.cpp
index ee10801ec5..70448ab92a 100644
--- a/utils/TableGen/FastISelEmitter.cpp
+++ b/utils/TableGen/FastISelEmitter.cpp
@@ -54,6 +54,7 @@ struct OperandsSignature {
bool initialize(TreePatternNode *InstPatNode,
const CodeGenTarget &Target,
MVT::SimpleValueType VT) {
+
if (!InstPatNode->isLeaf()) {
if (InstPatNode->getOperator()->getName() == "imm") {
Operands.push_back("i");
@@ -69,6 +70,7 @@ struct OperandsSignature {
for (unsigned i = 0, e = InstPatNode->getNumChildren(); i != e; ++i) {
TreePatternNode *Op = InstPatNode->getChild(i);
+
// For now, filter out any operand with a predicate.
// For now, filter out any operand with multiple values.
if (!Op->getPredicateFns().empty() ||
@@ -105,6 +107,7 @@ struct OperandsSignature {
RC = Target.getRegisterClassForRegister(OpLeafRec);
else
return false;
+
// For now, require the register operands' register classes to all
// be the same.
if (!RC)
@@ -262,6 +265,15 @@ void FastISelMap::CollectPatterns(CodeGenDAGPatterns &CGP) {
if (II.OperandList.empty())
continue;
+ // For now ignore instructions that have predicate operands.
+ bool HasPredicate = false;
+ for (unsigned i = 0, e = II.OperandList.size(); i != e; ++i) {
+ if(II.OperandList[i].Rec->isSubClassOf("PredicateOperand"))
+ HasPredicate = true;
+ }
+ if (HasPredicate)
+ continue;
+
// For now, ignore multi-instruction patterns.
bool MultiInsts = false;
for (unsigned i = 0, e = Dst->getNumChildren(); i != e; ++i) {