[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Sep 14 16:05:24 PDT 2005
Changes in directory llvm/utils/TableGen:
DAGISelEmitter.cpp updated: 1.26 -> 1.27
---
Log message:
Verify that xform functions only occur in logical places
---
Diffs of the changes: (+14 -5)
DAGISelEmitter.cpp | 19 ++++++++++++++-----
1 files changed, 14 insertions(+), 5 deletions(-)
Index: llvm/utils/TableGen/DAGISelEmitter.cpp
diff -u llvm/utils/TableGen/DAGISelEmitter.cpp:1.26 llvm/utils/TableGen/DAGISelEmitter.cpp:1.27
--- llvm/utils/TableGen/DAGISelEmitter.cpp:1.26 Wed Sep 14 18:01:59 2005
+++ llvm/utils/TableGen/DAGISelEmitter.cpp Wed Sep 14 18:05:13 2005
@@ -627,8 +627,8 @@
}
/// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an
-/// instruction input.
-static void HandleUse(TreePattern *I, TreePatternNode *Pat,
+/// instruction input. Return true if this is a real use.
+static bool HandleUse(TreePattern *I, TreePatternNode *Pat,
std::map<std::string, TreePatternNode*> &InstInputs) {
// No name -> not interesting.
if (Pat->getName().empty()) {
@@ -638,7 +638,7 @@
I->error("Input " + DI->getDef()->getName() + " must be named!");
}
- return;
+ return false;
}
Record *Rec;
@@ -669,6 +669,7 @@
if (Slot->getType() != Pat->getType())
I->error("All $" + Pat->getName() + " inputs must agree with each other");
}
+ return true;
}
/// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is
@@ -679,7 +680,9 @@
std::map<std::string, TreePatternNode*> &InstInputs,
std::map<std::string, Record*> &InstResults) {
if (Pat->isLeaf()) {
- HandleUse(I, Pat, InstInputs);
+ bool isUse = HandleUse(I, Pat, InstInputs);
+ if (!isUse && Pat->getTransformFn())
+ I->error("Cannot specify a transform function for a non-input value!");
return;
} else if (Pat->getOperator()->getName() != "set") {
// If this is not a set, verify that the children nodes are not void typed,
@@ -692,9 +695,12 @@
// If this is a non-leaf node with no children, treat it basically as if
// it were a leaf. This handles nodes like (imm).
+ bool isUse = false;
if (Pat->getNumChildren() == 0)
- HandleUse(I, Pat, InstInputs);
+ isUse = HandleUse(I, Pat, InstInputs);
+ if (!isUse && Pat->getTransformFn())
+ I->error("Cannot specify a transform function for a non-input value!");
return;
}
@@ -704,6 +710,9 @@
else if (Pat->getNumChildren() & 1)
I->error("set requires an even number of operands");
+ if (Pat->getTransformFn())
+ I->error("Cannot specify a transform function on a set node!");
+
// Check the set destinations.
unsigned NumValues = Pat->getNumChildren()/2;
for (unsigned i = 0; i != NumValues; ++i) {
More information about the llvm-commits
mailing list