HomeSort by relevance Sort by last modified time
    Searched refs:ComplexPattern (Results 1 - 7 of 7) sorted by null

  /external/llvm/utils/TableGen/
CodeGenTarget.h 188 /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
190 class ComplexPattern {
197 ComplexPattern() : NumOperands(0) {}
198 ComplexPattern(Record *R);
CodeGenDAGPatterns.h 37 class ComplexPattern;
402 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
403 /// return the ComplexPattern information, otherwise return null.
404 const ComplexPattern *
686 std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
726 const ComplexPattern &getComplexPattern(Record *R) const {
DAGISelMatcherEmitter.cpp 43 DenseMap<const ComplexPattern*, unsigned> ComplexPatternMap;
44 std::vector<const ComplexPattern*> ComplexPatterns;
81 unsigned getComplexPat(const ComplexPattern &P) {
384 const ComplexPattern &Pattern = CCPM->getPattern();
646 const ComplexPattern &P = *ComplexPatterns[i];
DAGISelMatcher.h 25 class ComplexPattern;
655 /// CheckComplexPatMatcher - This node runs the specified ComplexPattern on
658 const ComplexPattern &Pattern;
671 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber,
676 const ComplexPattern &getPattern() const { return Pattern; }
    [all...]
CodeGenTarget.cpp 363 // ComplexPattern implementation
365 ComplexPattern::ComplexPattern(Record *R) {
395 << "' on ComplexPattern '" << R->getName() << "'!\n";
DAGISelMatcherGen.cpp 245 if (LeafRec->isSubClassOf("ComplexPattern")) {
246 // We can't model ComplexPattern uses that don't have their name taken yet.
253 // Remember this ComplexPattern so that we can emit it after all the other
455 // If the root of the pattern is a ComplexPattern and if it is specified to
459 if (const ComplexPattern *CP =
478 // Now that we've completed the structural type match, emit any ComplexPattern
494 const ComplexPattern &CP =
534 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
    [all...]
CodeGenDAGPatterns.cpp 740 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
    [all...]

Completed in 621 milliseconds