HomeSort by relevance Sort by last modified time
    Searched defs:reg_no (Results 1 - 2 of 2) sorted by null

  /art/compiler/sea_ir/ir/
sea.cc 355 int reg_no = (*phi_it)->GetRegisterNumber(); local
356 scoped_table->Add(reg_no, (*phi_it));
483 int reg_no = (*inst_it)->GetResultRegister(); local
484 std::map<int, InstructionNode*>::iterator res = de_defs_.find(reg_no);
485 if ((reg_no != NO_REGISTER) && (res == de_defs_.end())) {
486 de_defs_.insert(std::pair<int, InstructionNode*>(reg_no, *inst_it));
574 bool Region::InsertPhiFor(int reg_no) {
575 if (!ContainsPhiFor(reg_no)) {
576 phi_set_.insert(reg_no);
577 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no);
597 int reg_no = phi->GetRegisterNumber(); local
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
encoder.h 77 typedef enum Reg_No {
98 } Reg_No;
320 Reg_No _reg_no;
323 R_Opnd(Reg_No r): RM_Opnd(Reg), _reg_no(r) {}
324 Reg_No reg_no() const { return _reg_no; } function in class:R_Opnd
347 M_Opnd(Reg_No rbase, I_32 rdisp):
349 M_Opnd(I_32 disp, Reg_No rbase, Reg_No rindex, unsigned scale):
353 m_index(that.m_index.reg_no()), m_base(that.m_base.reg_no()
    [all...]

Completed in 410 milliseconds