Searched refs:PhiInstructionNode (Results 1 – 10 of 10) sorted by relevance
25 class PhiInstructionNode; variable48 virtual void Visit(PhiInstructionNode* region) = 0;79 virtual void Traverse(PhiInstructionNode* phi) { } in Traverse()
44 class PhiInstructionNode; variable80 class PhiInstructionNode: public InstructionNode {82 explicit PhiInstructionNode(int register_no): in PhiInstructionNode() function205 std::vector<PhiInstructionNode*>* GetPhiNodes() { in GetPhiNodes()254 std::vector<PhiInstructionNode*> phi_instructions_;
33 std::vector<PhiInstructionNode*>* phis = region->GetPhiNodes(); in Traverse()34 for (std::vector<PhiInstructionNode*>::const_iterator cit = phis->begin(); in Traverse()352 std::vector<PhiInstructionNode*>* phis = crt_region->GetPhiNodes(); in RenameAsSSA()353 for (std::vector<PhiInstructionNode*>::iterator phi_it = phis->begin(); in RenameAsSSA()577 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no); in InsertPhiFor()594 for (std::vector<PhiInstructionNode*>::iterator phi_it = phi_instructions_.begin(); in SetPhiDefinitionsForUses()596 PhiInstructionNode* phi = (*phi_it); in SetPhiDefinitionsForUses()
76 void DotGenerationVisitor::ToDotSSAEdges(PhiInstructionNode* instruction) { in ToDotSSAEdges()127 std::vector<PhiInstructionNode*>* phi_instructions = region->GetPhiNodes(); in Visit()128 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions->begin(); in Visit()165 void DotGenerationVisitor::Visit(PhiInstructionNode* phi) { in Visit()
47 void ToDotSSAEdges(PhiInstructionNode* instruction);58 void Visit(PhiInstructionNode* phi);
121 void Visit(PhiInstructionNode* region);144 void Visit(PhiInstructionNode* region);164 void Visit(PhiInstructionNode* region) { } in Visit()
29 void CodeGenPrepassVisitor::Visit(PhiInstructionNode* phi) { in Visit()256 void CodeGenPostpassVisitor::Visit(PhiInstructionNode* phi) { in Visit()
46 void Visit(PhiInstructionNode* instruction);
42 void TypeInferenceVisitor::Visit(PhiInstructionNode* instruction) { in Visit()
149 std::vector<PhiInstructionNode*>* phi_instructions = (*region_it)->GetPhiNodes(); in ComputeTypes()