Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Results

82     MarkGlueResults,      // Indicate which interior nodes have glue results.
83 CompleteMatch, // Finish a match and update the results.
84 MorphNodeTo // Build a node, finish a match and update results.
899 /// pushing the chain and glue results.
1088 /// CompleteMatchMatcher - Complete a match by replacing the results of the
1092 SmallVector<unsigned, 2> Results;
1095 CompleteMatchMatcher(const unsigned *results, unsigned numresults,
1097 : Matcher(CompleteMatch), Results(results, results+numresults),
1100 unsigned getNumResults() const { return Results.size(); }
1101 unsigned getResult(unsigned R) const { return Results[R]; }
1111 return cast<CompleteMatchMatcher>(M)->Results == Results &&