Searched defs:previous (Results 1 - 11 of 11) sorted by relevance

/art/compiler/optimizing/
H A Dgvn.cc254 Node* previous = nullptr; local
266 // Clone the bucket, make sure 'previous' and 'node' point to
268 previous = CloneBucket(i, previous);
269 node = (previous == nullptr) ? buckets_[i] : previous->GetNext();
272 previous = node;
286 if (previous == nullptr) {
289 previous->SetNext(next);
292 previous
[all...]
H A Dregister_allocator.cc910 // small register numbers. So only update the candidate if the previous
1394 // This is an equivalent of the previous phi. We need to assign the same
1431 HInstruction* previous = user->GetPrevious(); local
1433 if (previous == nullptr
1434 || !previous->IsParallelMove()
1435 || previous->GetLifetimePosition() < user->GetLifetimePosition()) {
1440 move = previous->AsParallelMove();
1505 HInstruction* previous = at->GetPrevious(); local
1506 if (previous == nullptr
1507 || !previous
1540 HInstruction* previous = last->GetPrevious(); local
[all...]
H A Dnodes.cc955 HInstruction* previous = GetPrevious(); local
956 while (previous != nullptr && previous->IsParallelMove()) {
957 previous = previous->GetPrevious();
959 return previous;
H A Dssa_liveness_analysis.h559 for (SafepointPosition* safepoint = first_safepoint_, *previous = nullptr;
561 previous = safepoint, safepoint = safepoint->GetNext()) {
562 if (safepoint->GetPosition() >= position) return previous;
605 LiveRange* previous = nullptr; local
611 previous = current;
614 // If the previous range did not cover this position, we know position is in
617 DCHECK(previous != nullptr);
620 last_range_ = previous;
621 previous->next_ = nullptr;
637 if (previous !
[all...]
H A Dcode_generator_mips64.cc2206 HInstruction* previous = got->GetPrevious(); local
2214 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2215 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_arm64.cc688 // not been saved by the previous call to
2771 HInstruction* previous = got->GetPrevious(); local
2779 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2780 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
3034 // Condition codes set from previous instruction.
3554 // emit a read barrier for the previous class reference load.
3743 // emit a read barrier for the previous class reference load.
H A Dcode_generator_mips.cc2587 HInstruction* previous = got->GetPrevious(); local
2595 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2596 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
H A Dcode_generator_arm.cc515 // not been saved by the previous call to
1213 HInstruction* previous = got->GetPrevious(); local
1222 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1223 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1894 // emit a read barrier for the previous class reference load.
4102 // double fields, are handled in the previous switch statement.
4110 // in the previous switch statement.
4442 // arrays, are handled in the previous switch statement.
6429 // emit a read barrier for the previous clas
[all...]
H A Dcode_generator_x86.cc532 // not been saved by the previous call to
1129 HInstruction* previous = got->GetPrevious(); local
1137 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1138 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1563 // Materialization was the previous instruction. Condition codes are right.
2034 // emit a read barrier for the previous class reference load.
4423 // emit a read barrier for the previous class reference load.
4665 // long fields, are handled in the previous switch statement.
4673 // in the previous switc
[all...]
H A Dcode_generator_x86_64.cc553 // has not been saved by the previous call to
863 // emit a read barrier for the previous class reference load.
1230 HInstruction* previous = got->GetPrevious(); local
1238 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1239 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1591 // Materialization was the previous instruction. Condition codes are right.
2243 // emit a read barrier for the previous class reference load.
4180 // fields, are handled in the previous switch statement.
4188 // in the previous switc
[all...]
/art/compiler/utils/
H A Dassembler.h55 AssemblerFixup* previous() const { return previous_; } function in class:art::AssemblerFixup

Completed in 260 milliseconds