Searched defs:match_rules_cnt (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp148 int match_rules_cnt = 0; local
196 matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
210 assert(match_rules_cnt < 100," too many match rule clones");
212 sprintf(buf, "%s_%d", instr->_ident, match_rules_cnt++);
215 matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
297 void ADLParser::matchrule_clone_and_swap(MatchRule* rule, const char* instr_ident, int& match_rules_cnt) { argument
303 rule->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
H A Dformssel.cpp3803 void MatchRule::matchrule_swap_commutative_op(const char* instr_ident, int count, int& match_rules_cnt) { argument
3804 assert(match_rules_cnt < 100," too many match rule clones");
3810 sprintf(buf, "%s_%d", instr_ident, match_rules_cnt++);
3816 this-> matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);
3817 clone->matchrule_swap_commutative_op(instr_ident, count, match_rules_cnt);

Completed in 161 milliseconds