Lines Matching refs:cit
27 for (std::vector<Region*>::const_iterator cit = graph->GetRegions()->begin();
28 cit != graph->GetRegions()->end(); cit++ ) {
29 if ((*cit)->GetIDominator() == (*cit)) {
30 root_region = *cit;
37 for (std::set<Region*>::const_iterator cit = dominated_regions->begin();
38 cit != dominated_regions->end(); cit++ ) {
39 ordered_regions_.push_back(*cit);
68 for (std::vector<InstructionNode*>::const_iterator cit = used_in->begin();
69 cit != used_in->end(); cit++) {
70 dot_text_ += (*cit)->StringId() + " -> " + instruction->StringId() + "[color=gray,label=\"";
100 for (std::vector<InstructionNode*>::const_iterator cit = used_in->begin();
101 cit != used_in->end(); cit++) {
102 dot_text_ += (*cit)->StringId() + " -> " + instruction->StringId() + "[color=gray,label=\"";
128 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions->begin();
129 cit != phi_instructions->end(); cit++) {
130 dot_text_ += (*cit)->StringId() +";\n";
133 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
134 cit != instructions->end(); cit++) {
135 dot_text_ += (*cit)->StringId() +";\n";
140 for (std::vector<Region*>::const_iterator cit = successors->begin(); cit != successors->end();
141 cit++) {
142 DCHECK(NULL != *cit) << "Null successor found for SeaNode" <<
145 (*cit)->GetLastChild()->StringId() +
146 "[lhead=" + (*cit)->StringId() + ", " + "ltail=" + region->StringId() + "];\n\n";