OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
575
// Create
new_phi
in landing pad
576
llvm::PHINode*
new_phi
= irb_.CreatePHI(phi->getType(), rewrite_pair.size());
local
577
// Insert all incoming value into
new_phi
by rewrite_pair
581
new_phi
->addIncoming(phi->getIncomingValueForBlock(old_bb), new_bb);
591
// Insert
new_phi
into new handler phi
592
handler_phi[phi]->addIncoming(
new_phi
, lbb);
602
llvm::PHINode*
new_phi
= it->second;
local
603
new_phi
->insertBefore(old_phi);
604
old_phi->replaceAllUsesWith(
new_phi
);
[
all
...]
Completed in 294 milliseconds