HomeSort by relevance Sort by last modified time
    Searched refs:PhiInstructionNode (Results 1 - 10 of 10) sorted by null

  /art/compiler/sea_ir/ir/
visitor.h 25 class PhiInstructionNode;
48 virtual void Visit(PhiInstructionNode* region) = 0;
79 virtual void Traverse(PhiInstructionNode* phi) { }
sea.h 44 class PhiInstructionNode;
80 class PhiInstructionNode: public InstructionNode {
82 explicit PhiInstructionNode(int register_no):
205 std::vector<PhiInstructionNode*>* GetPhiNodes() {
254 std::vector<PhiInstructionNode*> phi_instructions_;
sea.cc 33 std::vector<PhiInstructionNode*>* phis = region->GetPhiNodes();
34 for (std::vector<PhiInstructionNode*>::const_iterator cit = phis->begin();
352 std::vector<PhiInstructionNode*>* phis = crt_region->GetPhiNodes();
353 for (std::vector<PhiInstructionNode*>::iterator phi_it = phis->begin();
577 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no);
594 for (std::vector<PhiInstructionNode*>::iterator phi_it = phi_instructions_.begin();
596 PhiInstructionNode* phi = (*phi_it);
  /art/compiler/sea_ir/debug/
dot_gen.h 47 void ToDotSSAEdges(PhiInstructionNode* instruction);
58 void Visit(PhiInstructionNode* phi);
dot_gen.cc 76 void DotGenerationVisitor::ToDotSSAEdges(PhiInstructionNode* instruction) {
127 std::vector<PhiInstructionNode*>* phi_instructions = region->GetPhiNodes();
128 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions->begin();
165 void DotGenerationVisitor::Visit(PhiInstructionNode* phi) {
  /art/compiler/sea_ir/types/
type_inference_visitor.h 46 void Visit(PhiInstructionNode* instruction);
type_inference_visitor.cc 42 void TypeInferenceVisitor::Visit(PhiInstructionNode* instruction) {
type_inference.cc 149 std::vector<PhiInstructionNode*>* phi_instructions = (*region_it)->GetPhiNodes();
  /art/compiler/sea_ir/code_gen/
code_gen.h 121 void Visit(PhiInstructionNode* region);
144 void Visit(PhiInstructionNode* region);
164 void Visit(PhiInstructionNode* region) { }
code_gen.cc 29 void CodeGenPrepassVisitor::Visit(PhiInstructionNode* phi) {
256 void CodeGenPostpassVisitor::Visit(PhiInstructionNode* phi) {

Completed in 538 milliseconds