Searched refs:previous (Results 1 - 12 of 12) sorted by relevance

/art/compiler/optimizing/
H A Dgvn.cc207 Node* previous = nullptr; local
219 // Clone the bucket, make sure 'previous' and 'node' point to
221 previous = CloneBucket(i, previous);
222 node = (previous == nullptr) ? buckets_[i] : previous->GetNext();
225 previous = node;
239 if (previous == nullptr) {
242 previous->SetNext(next);
245 previous
[all...]
H A Dregister_allocator.cc1319 HInstruction* previous = user->GetPrevious(); local
1321 if (previous == nullptr
1322 || !previous->IsParallelMove()
1323 || previous->GetLifetimePosition() < user->GetLifetimePosition()) {
1328 move = previous->AsParallelMove();
1393 HInstruction* previous = at->GetPrevious(); local
1394 if (previous == nullptr
1395 || !previous->IsParallelMove()
1396 || previous->GetLifetimePosition() != position) {
1397 // If the previous i
1428 HInstruction* previous = last->GetPrevious(); local
[all...]
H A Dssa_liveness_analysis.h546 for (SafepointPosition* safepoint = first_safepoint_, *previous = nullptr;
548 previous = safepoint, safepoint = safepoint->GetNext()) {
549 if (safepoint->GetPosition() >= position) return previous;
592 LiveRange* previous = nullptr; local
598 previous = current;
601 // If the previous range did not cover this position, we know position is in
604 DCHECK(previous != nullptr);
607 last_range_ = previous;
608 previous->next_ = nullptr;
624 if (previous !
[all...]
H A Dnodes.cc615 HInstruction* previous = GetPrevious(); local
616 while (previous != nullptr && previous->IsParallelMove()) {
617 previous = previous->GetPrevious();
619 return previous;
H A Dcode_generator.cc263 // The type of the previous instruction tells us if we need a single or double stack slot.
408 HInstruction* previous = instruction->GetPrevious(); local
410 Move(previous, temp_location, instruction);
871 // Find the first previous instruction which is not a move.
H A Dcode_generator_arm64.cc1721 HInstruction* previous = got->GetPrevious(); local
1729 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1730 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_mips64.cc1934 HInstruction* previous = got->GetPrevious(); local
1942 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1943 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_arm.cc911 HInstruction* previous = got->GetPrevious(); local
920 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
921 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_x86.cc812 HInstruction* previous = got->GetPrevious(); local
820 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
821 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_x86_64.cc775 HInstruction* previous = got->GetPrevious(); local
783 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
784 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
/art/compiler/utils/
H A Dassembler.cc66 fixup = fixup->previous();
H A Dassembler.h147 AssemblerFixup* previous() const { return previous_; } function in class:art::AssemblerFixup

Completed in 154 milliseconds