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

  /external/llvm/utils/TableGen/
CodeGenTarget.h 191 /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
193 class ComplexPattern {
200 ComplexPattern() : NumOperands(0) {}
201 ComplexPattern(Record *R);
DAGISelMatcherEmitter.cpp 48 DenseMap<const ComplexPattern*, unsigned> ComplexPatternMap;
49 std::vector<const ComplexPattern*> ComplexPatterns;
99 unsigned getComplexPat(const ComplexPattern &P) {
426 const ComplexPattern &Pattern = CCPM->getPattern();
682 const ComplexPattern &P = *ComplexPatterns[i];
CodeGenDAGPatterns.h 37 class ComplexPattern;
427 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
428 /// return the ComplexPattern information, otherwise return null.
429 const ComplexPattern *
434 /// operand. ComplexPattern specifies this explicitly; MIOperandInfo gives it
559 /// ComplexPattern. This records the ComplexPattern instance and the operand
560 /// number for each operand encountered in a ComplexPattern to aid in that
724 std::map<Record*, ComplexPattern, LessRecordByID> ComplexPatterns;
764 const ComplexPattern &getComplexPattern(Record *R) const
    [all...]
DAGISelMatcher.h 25 class ComplexPattern;
649 /// CheckComplexPatMatcher - This node runs the specified ComplexPattern on
652 const ComplexPattern &Pattern;
665 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber,
670 const ComplexPattern &getPattern() const { return Pattern; }
    [all...]
CodeGenTarget.cpp 388 // ComplexPattern implementation
390 ComplexPattern::ComplexPattern(Record *R) {
420 PropList[i]->getName() + "' on ComplexPattern '" +
DAGISelMatcherGen.cpp 262 if (LeafRec->isSubClassOf("ComplexPattern")) {
263 // We can't model ComplexPattern uses that don't have their name taken yet.
272 // Remember this ComplexPattern so that we can emit it after all the other
287 if (N->getOperator()->isSubClassOf("ComplexPattern")) {
496 // If the root of the pattern is a ComplexPattern and if it is specified to
500 if (const ComplexPattern *CP =
519 // Now that we've completed the structural type match, emit any ComplexPattern
540 const ComplexPattern &CP = *N->getComplexPatternInfo(CGP);
783 // multiple child patterns to cover them all. However, ComplexPattern
    [all...]
CodeGenDAGPatterns.cpp 828 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenTarget.h 168 /// ComplexPattern - ComplexPattern info, corresponding to the ComplexPattern
170 class ComplexPattern {
177 ComplexPattern() : NumOperands(0) {}
178 ComplexPattern(Record *R);
CodeGenDAGPatterns.h 36 class ComplexPattern;
401 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern,
402 /// return the ComplexPattern information, otherwise return null.
403 const ComplexPattern *
676 std::map<Record*, ComplexPattern, RecordPtrCmp> ComplexPatterns;
716 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;
656 /// CheckComplexPatMatcher - This node runs the specified ComplexPattern on
659 const ComplexPattern &Pattern;
672 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber,
677 const ComplexPattern &getPattern() const { return Pattern; }
    [all...]
CodeGenTarget.cpp 305 // ComplexPattern implementation
307 ComplexPattern::ComplexPattern(Record *R) {
337 << "' on ComplexPattern '" << R->getName() << "'!\n";
DAGISelMatcherGen.cpp 249 if (LeafRec->isSubClassOf("ComplexPattern")) {
250 // We can't model ComplexPattern uses that don't have their name taken yet.
257 // Remember this ComplexPattern so that we can emit it after all the other
459 // If the root of the pattern is a ComplexPattern and if it is specified to
463 if (const ComplexPattern *CP =
482 // Now that we've completed the structural type match, emit any ComplexPattern
498 const ComplexPattern &CP =
538 if (const ComplexPattern *CP = N->getComplexPatternInfo(CGP)) {
    [all...]
CodeGenDAGPatterns.cpp 703 const ComplexPattern *AM = P->getComplexPatternInfo(CGP);
    [all...]

Completed in 682 milliseconds