Searched refs:merge (Results 1 - 4 of 4) sorted by relevance

/art/compiler/utils/
H A Dintrusive_forward_list.h309 void merge(IntrusiveForwardList& other) { function in class:art::IntrusiveForwardList
310 merge(other, std::less<value_type>());
312 void merge(IntrusiveForwardList&& other) { function in class:art::IntrusiveForwardList
313 merge(other); // Use l-value overload.
316 void merge(IntrusiveForwardList& other, Compare cmp) { function in class:art::IntrusiveForwardList
336 void merge(IntrusiveForwardList&& other, Compare cmp) { function in class:art::IntrusiveForwardList
337 merge(other, cmp); // Use l-value overload.
352 merge(second_half, cmp);
H A Dintrusive_forward_list_test.cc454 ref1.merge(ref2);
455 ifl1.merge(ifl2);
/art/compiler/optimizing/
H A Dinliner.cc1011 // the diamond. The returned block of the split after will be the merge block
1015 HBasicBlock* merge = otherwise->SplitAfterForInlining(invoke_instruction); local
1017 // If the methods we are inlining return a value, we create a phi in the merge block
1022 merge->AddPhi(phi);
1036 graph_->AddBlock(merge);
1041 end_then->AddSuccessor(merge);
1042 otherwise->AddSuccessor(merge);
1049 merge->SetDominator(cursor_block);
1050 cursor_block->AddDominatedBlock(merge);
1059 graph_->reverse_post_order_[++index] = merge;
[all...]
/art/runtime/
H A Ddebugger.cc4574 HeapChunkContext(bool merge, bool native) argument
4582 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
4709 // OLD-TODO: if context.merge, see if this chunk is different from the last chunk.

Completed in 607 milliseconds