Home
last modified time | relevance | path

Searched refs:previous (Results 1 – 20 of 20) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DInstances.java53 private long previous = -1; in Instances()
57 if (x.getId() == previous) { in Instances()
60 previous = x.getId(); in Instances()
/art/compiler/optimizing/
Dregister_allocation_resolver.cc532 HInstruction* previous = user->GetPrevious(); in AddInputMoveFor() local
534 if (previous == nullptr in AddInputMoveFor()
535 || !previous->IsParallelMove() in AddInputMoveFor()
536 || previous->GetLifetimePosition() < user->GetLifetimePosition()) { in AddInputMoveFor()
541 move = previous->AsParallelMove(); in AddInputMoveFor()
606 HInstruction* previous = at->GetPrevious(); in InsertParallelMoveAt() local
607 if (previous == nullptr in InsertParallelMoveAt()
608 || !previous->IsParallelMove() in InsertParallelMoveAt()
609 || previous->GetLifetimePosition() != position) { in InsertParallelMoveAt()
613 DCHECK(previous == nullptr in InsertParallelMoveAt()
[all …]
Dgvn.cc254 Node* previous = nullptr; in DeleteAllImpureWhich() local
268 previous = CloneBucket(i, previous); in DeleteAllImpureWhich()
269 node = (previous == nullptr) ? buckets_[i] : previous->GetNext(); in DeleteAllImpureWhich()
272 previous = node; in DeleteAllImpureWhich()
286 if (previous == nullptr) { in DeleteAllImpureWhich()
289 previous->SetNext(next); in DeleteAllImpureWhich()
292 previous = node; in DeleteAllImpureWhich()
Dssa_liveness_analysis.h639 for (SafepointPosition* safepoint = first_safepoint_, *previous = nullptr; in FindSafepointJustBefore() local
641 previous = safepoint, safepoint = safepoint->GetNext()) { in FindSafepointJustBefore()
642 if (safepoint->GetPosition() >= position) return previous; in FindSafepointJustBefore()
683 LiveRange* previous = nullptr; in SplitAt() local
689 previous = current; in SplitAt()
695 DCHECK(previous != nullptr); in SplitAt()
698 last_range_ = previous; in SplitAt()
699 previous->next_ = nullptr; in SplitAt()
715 if (previous != nullptr) { in SplitAt()
716 previous->next_ = last_range_; in SplitAt()
Dloop_optimization.h59 previous(nullptr), in LoopNode()
64 LoopNode* previous; member
Dloop_optimization.cc585 node->previous = last_loop_; in AddLoop()
594 if (node->previous != nullptr) { in RemoveLoop()
596 node->previous->next = node->next; in RemoveLoop()
598 node->next->previous = node->previous; in RemoveLoop()
609 node->next->previous = nullptr; in RemoveLoop()
Dnodes.cc1152 HInstruction* previous = GetPrevious(); in GetPreviousDisregardingMoves() local
1153 while (previous != nullptr && previous->IsParallelMove()) { in GetPreviousDisregardingMoves()
1154 previous = previous->GetPrevious(); in GetPreviousDisregardingMoves()
1156 return previous; in GetPreviousDisregardingMoves()
Dcode_generator_arm64.cc3412 HInstruction* previous = got->GetPrevious(); in HandleGoto() local
3420 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { in HandleGoto()
3421 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); in HandleGoto()
Dcode_generator_x86_64.cc1645 HInstruction* previous = got->GetPrevious(); in HandleGoto() local
1654 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { in HandleGoto()
1655 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); in HandleGoto()
Dcode_generator_x86.cc1476 HInstruction* previous = got->GetPrevious(); in HandleGoto() local
1485 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { in HandleGoto()
1486 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); in HandleGoto()
Dcode_generator_arm_vixl.cc2606 HInstruction* previous = got->GetPrevious(); in HandleGoto() local
2614 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) { in HandleGoto()
2615 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr); in HandleGoto()
/art/test/001-Main/
Dinfo.txt1 Import of a previous oat test. Empty main, just test starting up the runtime.
/art/tools/ahat/src/main/com/android/ahat/
DObjectHandler.java137 Value previous = Value.getBaseline(base.asArrayInstance().getValue(i)); in printArrayElements() local
138 if (!Objects.equals(current, previous)) { in printArrayElements()
140 delta.append(Summarizer.summarize(previous)); in printArrayElements()
177 Value previous = Value.getBaseline(field.baseline); in printFields() local
179 was.append(Summarizer.summarize(previous)); in printFields()
192 Objects.equals(field.current, previous) ? new DocString() : was); in printFields()
/art/test/541-regression-inlined-deopt/
Dinfo.txt3 control over vregs because the previous test 449 would pass because the vreg
/art/compiler/utils/
Dassembler.cc58 fixup = fixup->previous(); in ProcessFixups()
Dassembler.h57 AssemblerFixup* previous() const { return previous_; } in previous() function
/art/tools/checker/
DREADME33 matched the previous check. Can only be used after a CHECK or
73 after the 'CHECK-START' keyword. The previous example can be updated to run for
/art/cmdline/
DREADME.md137 once, only the latest value is taken into account (and all previous occurrences of the argument are
140 In some situations, we may want to accumulate the argument values instead of discarding the previous
/art/runtime/interpreter/mterp/x86/
Darithmetic.S293 fldcw LOCAL0(%esp) # restore previous rounding mode
/art/test/510-checker-try-catch/smali/
DBuilder.smali402 # Same as previous test, only the blocks are processed in the opposite order.