Home
last modified time | relevance | path

Searched refs:reg_no (Results 1 – 3 of 3) sorted by relevance

/art/compiler/sea_ir/ir/
Dsea.h94 void RenameToSSA(int reg_no, InstructionNode* definition, unsigned int predecessor_id) { in RenameToSSA() argument
96 << StringId() << " register " << reg_no; in RenameToSSA()
201 bool ContainsPhiFor(int reg_no) { in ContainsPhiFor() argument
202 return (phi_set_.end() != phi_set_.find(reg_no)); in ContainsPhiFor()
211 bool InsertPhiFor(int reg_no);
Dsea.cc355 int reg_no = (*phi_it)->GetRegisterNumber(); in RenameAsSSA() local
356 scoped_table->Add(reg_no, (*phi_it)); in RenameAsSSA()
483 int reg_no = (*inst_it)->GetResultRegister(); in ComputeDownExposedDefs() local
484 std::map<int, InstructionNode*>::iterator res = de_defs_.find(reg_no); in ComputeDownExposedDefs()
485 if ((reg_no != NO_REGISTER) && (res == de_defs_.end())) { in ComputeDownExposedDefs()
486 de_defs_.insert(std::pair<int, InstructionNode*>(reg_no, *inst_it)); in ComputeDownExposedDefs()
574 bool Region::InsertPhiFor(int reg_no) { in InsertPhiFor() argument
575 if (!ContainsPhiFor(reg_no)) { in InsertPhiFor()
576 phi_set_.insert(reg_no); in InsertPhiFor()
577 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no); in InsertPhiFor()
[all …]
Dinstruction_nodes.h57 void RenameToSSA(int reg_no, InstructionNode* definition) { in RenameToSSA() argument
58 definition_edges_.insert(std::pair<int, InstructionNode*>(reg_no, definition)); in RenameToSSA()
59 DCHECK(NULL != definition) << "SSA definition for register " << reg_no in RenameToSSA()