Home | History | Annotate | Download | only in debug

Lines Matching refs:InstructionNode

44 void DotGenerationVisitor::ToDotSSAEdges(InstructionNode* instruction) {
45 std::map<int, InstructionNode*>* definition_edges = instruction->GetSSAProducersMap();
47 for (std::map<int, InstructionNode*>::const_iterator
67 std::vector<InstructionNode*>* used_in = instruction->GetSSAConsumers();
68 for (std::vector<InstructionNode*>::const_iterator cit = used_in->begin();
77 std::vector<InstructionNode*> definition_edges = instruction->GetSSAProducers();
79 for (std::vector<InstructionNode*>::const_iterator
99 std::vector<InstructionNode*>* used_in = instruction->GetSSAConsumers();
100 for (std::vector<InstructionNode*>::const_iterator cit = used_in->begin();
132 std::vector<InstructionNode*>* instructions = region->GetInstructions();
133 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
149 void DotGenerationVisitor::Visit(InstructionNode* instruction) {