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

  /art/compiler/sea_ir/ir/
sea.cc 577 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no); local
578 new_phi->SetRegion(this);
579 phi_instructions_.push_back(new_phi);
  /art/compiler/llvm/
gbc_expander.cc 572 // Create new_phi in landing pad
573 llvm::PHINode* new_phi = irb_.CreatePHI(phi->getType(), rewrite_pair.size()); local
574 // Insert all incoming value into new_phi by rewrite_pair
578 new_phi->addIncoming(phi->getIncomingValueForBlock(old_bb), new_bb);
588 // Insert new_phi into new handler phi
589 handler_phi[phi]->addIncoming(new_phi, lbb);
599 llvm::PHINode* new_phi = it->second; local
600 new_phi->insertBefore(old_phi);
601 old_phi->replaceAllUsesWith(new_phi);
    [all...]

Completed in 85 milliseconds