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

  /art/compiler/optimizing/
superblock_cloner.cc 152 HBasicBlock* orig_succ) {
153 DCHECK(IsInOrigBBSet(orig_succ));
154 HBasicBlock* copy_succ = GetBlockCopy(orig_succ);
156 size_t this_index = orig_succ->GetPredecessorIndexOf(orig_block);
163 for (HInstructionIterator it(orig_succ->GetPhis()); !it.Done(); it.Advance()) {
181 orig_block->ReplaceSuccessor(orig_succ, copy_succ);
186 HBasicBlock* orig_succ) {
187 DCHECK(IsInOrigBBSet(orig_succ));
189 HBasicBlock* copy_succ = GetBlockCopy(orig_succ);
192 size_t orig_index = orig_succ->GetPredecessorIndexOf(orig_block)
440 HBasicBlock* orig_succ = GetBlockById(e.GetTo()); local
    [all...]
superblock_cloner.h 245 // Remaps incoming or original internal edge to its copy, adjusts the phi inputs in orig_succ and
247 void RemapOrigInternalOrIncomingEdge(HBasicBlock* orig_block, HBasicBlock* orig_succ);
250 void AddCopyInternalEdge(HBasicBlock* orig_block, HBasicBlock* orig_succ);
252 // Remaps copy internal edge to its origin, adjusts the phi inputs in orig_succ.
253 void RemapCopyInternalEdge(HBasicBlock* orig_block, HBasicBlock* orig_succ);

Completed in 62 milliseconds