Searched defs:split (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dlive_interval_test.cc198 LiveInterval* split = interval->SplitAt(1); local
202 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
209 LiveInterval* split = interval->SplitAt(3); local
213 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
220 LiveInterval* split = interval->SplitAt(1); local
224 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
231 LiveInterval* split = interval->SplitAt(5); local
235 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split)));
242 LiveInterval* split = interval->SplitAt(9); local
246 ASSERT_TRUE(RangesEquals(split, expected_spli
253 LiveInterval* split = interval->SplitAt(6); local
264 LiveInterval* split = interval->SplitAt(4); local
275 LiveInterval* split = interval->SplitAt(5); local
[all...]
H A Dregister_allocator.cc160 LiveInterval* split = Split(current, first_register_use - 1); local
163 AddToUnhandled(split);
377 // that are the result of a split.
412 // covered by `current`, split `current` at the position where
414 LiveInterval* split = Split(current, free_until[reg]); local
415 DCHECK(split != nullptr);
416 AddToUnhandled(split);
462 // that are the result of a split.
492 // register, we split this interval just before its first register use.
494 LiveInterval* split local
506 LiveInterval* split = Split(active, current->GetStart()); local
520 LiveInterval* split = Split(current, next_intersection); local
523 LiveInterval* split = Split(inactive, current->GetStart()); local
[all...]
/art/compiler/dex/
H A Dmir_graph.cc166 LOG(FATAL) << "Break split failed";
245 * first half of a potentially throwing instruction that has been split into
246 * CHECK and work portions. Since the 2nd half of a split operation is always
260 * is in the middle of an existing block, split it into two. If immed_pred_block_p
261 * is not non-null and is the block being split, update *immed_pred_block_p to
266 BasicBlock* MIRGraph::FindBlock(DexOffset code_offset, bool split, bool create, argument
325 FindBlock(address, false /* split */, true /*create*/,
431 BasicBlock* taken_block = FindBlock(target, /* split */ true, /* create */ true,
443 * specify split for continue
459 FindBlock(cur_offset + width, /* split */ fals
[all...]

Completed in 465 milliseconds