Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Results

85     MarkGlueResults,      // Indicate which interior nodes have glue results.
86 CompleteMatch, // Finish a match and update the results.
87 MorphNodeTo // Build a node, finish a match and update results.
958 /// pushing the chain and glue results.
1147 /// CompleteMatchMatcher - Complete a match by replacing the results of the
1151 SmallVector<unsigned, 2> Results;
1154 CompleteMatchMatcher(ArrayRef<unsigned> results,
1156 : Matcher(CompleteMatch), Results(results.begin(), results.end()),
1159 unsigned getNumResults() const { return Results.size(); }
1160 unsigned getResult(unsigned R) const { return Results[R]; }
1170 return cast<CompleteMatchMatcher>(M)->Results == Results &&