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

/art/compiler/optimizing/
H A Dssa_liveness_analysis.cc48 auto insert_pos = worklist->rbegin(); // insert_pos.base() will be the actual position. local
49 for (auto end = worklist->rend(); insert_pos != end; ++insert_pos) {
50 HBasicBlock* current = *insert_pos;
59 worklist->insert(insert_pos.base(), block);
H A Dregister_allocator.cc1191 auto insert_pos = array->begin() + insert_at; local
1193 array->insert(insert_pos, { interval->GetHighInterval(), interval });
1195 array->insert(insert_pos, { interval, interval->GetLowInterval() });
1197 array->insert(insert_pos, interval);
H A Dnodes.cc1408 HInstruction* insert_pos = nullptr; local
1411 (insert_pos == nullptr || use.GetUser()->StrictlyDominates(insert_pos))) {
1412 insert_pos = use.GetUser();
1415 if (insert_pos == nullptr) {
1417 insert_pos = target_block->GetLastInstruction();
1418 DCHECK(insert_pos->IsControlFlow());
1420 if (insert_pos->IsIf()) {
1421 HInstruction* if_input = insert_pos->AsIf()->InputAt(0);
1422 if (if_input == insert_pos
[all...]

Completed in 93 milliseconds