Home
last modified time | relevance | path

Searched refs:GetNext (Results 1 – 25 of 36) sorted by relevance

12

/art/compiler/optimizing/
Dlive_ranges_test.cc79 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
123 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
169 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
180 range = range->GetNext(); in TEST_F()
184 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
192 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
244 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
252 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
260 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
268 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
[all …]
Dgvn.cc102 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Lookup()
118 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Contains()
175 for (Node* node = other.buckets_[i]; node != nullptr; node = node->GetNext()) { in PopulateFromInternal()
193 Node* GetNext() const { return next_; } in GetNext() function in art::ValueSet::Node
232 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in CloneBucket()
269 node = (previous == nullptr) ? buckets_[i] : previous->GetNext(); in DeleteAllImpureWhich()
273 node = node->GetNext(); in DeleteAllImpureWhich()
284 Node* next = node->GetNext(); in DeleteAllImpureWhich()
491 HInstruction* next = current->GetNext(); in VisitBasicBlock()
Dcha_guard_optimization.cc90 HInstruction* compare = flag->GetNext(); in RemoveGuard()
92 HInstruction* deopt = compare->GetNext(); in RemoveGuard()
186 HInstruction* compare = flag->GetNext(); in HoistGuard()
188 HInstruction* deopt = compare->GetNext(); in HoistGuard()
Dprepare_for_register_allocation.cc55 HInstruction* next = check->GetNext(); in VisitNullCheck()
60 next = next->GetNext(); in VisitNullCheck()
180 if (condition->GetNext() != user) { in CanEmitConditionAt()
298 for (HInstruction* between = input->GetNext(); between != user; between = between->GetNext()) { in CanMoveClinitCheck()
Dssa_builder.cc94 HInstruction* next = phi->GetNext(); in FixEnvironmentPhis()
98 next = next->GetNext(); in FixEnvironmentPhis()
101 DCHECK(!phi->IsVRegEquivalentOf(next->GetNext())); in FixEnvironmentPhis()
284 HInstruction* next = aget->GetNext(); in FindFloatOrDoubleEquivalentOfArrayGet()
608 HFloatConstant* result = constant->GetNext()->AsFloatConstant(); in GetFloatEquivalent()
612 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetFloatEquivalent()
630 HDoubleConstant* result = constant->GetNext()->AsDoubleConstant(); in GetDoubleEquivalent()
634 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetDoubleEquivalent()
655 HInstruction* next = phi->GetNext(); in GetFloatDoubleOrReferenceEquivalentOfPhi()
660 next = next->GetNext(); in GetFloatDoubleOrReferenceEquivalentOfPhi()
Dgraph_test.cc291 ASSERT_EQ(first_instruction->GetNext(), got); in TEST_F()
293 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
304 ASSERT_EQ(first_instruction->GetNext(), second_instruction); in TEST_F()
306 ASSERT_EQ(second_instruction->GetNext(), got); in TEST_F()
308 ASSERT_EQ(got->GetNext(), nullptr); in TEST_F()
Dlive_interval_test.cc174 ++i, current = current->GetNext()) { in RangesEquals()
291 ASSERT_TRUE(range->GetNext() == nullptr); in TEST()
302 ASSERT_TRUE(range->GetNext() == nullptr); in TEST()
313 ASSERT_TRUE(range->GetNext() == nullptr); in TEST()
326 range = range->GetNext(); in TEST()
Dregister_allocation_resolver.cc244 safepoint_position = safepoint_position->GetNext()) { in UpdateSafepointLiveRegisters()
371 range = range->GetNext(); in ConnectSiblings()
386 safepoint_position = safepoint_position->GetNext()) { in ConnectSiblings()
580 at = at->GetNext(); in InsertParallelMoveAt()
596 move = at->GetNext()->AsParallelMove(); in InsertParallelMoveAt()
602 at->GetBlock()->InsertInstructionBefore(move, at->GetNext()); in InsertParallelMoveAt()
689 HParallelMove* move = instruction->GetNext()->AsParallelMove(); in InsertMoveAfter()
696 instruction->GetBlock()->InsertInstructionBefore(move, instruction->GetNext()); in InsertMoveAfter()
Dssa_liveness_analysis.h72 LiveRange* GetNext() const { return next_; } in GetNext() function
254 SafepointPosition* GetNext() const { in GetNext() function
433 after_loop = after_loop->GetNext(); in AddLoopRange()
526 my_range = my_range->GetNext(); in FirstIntersectionWith()
531 other_range = other_range->GetNext(); in FirstIntersectionWith()
632 safepoint = safepoint->GetNext()) { in HasWillCallSafepoint()
641 previous = safepoint, safepoint = safepoint->GetNext()) { in FindSafepointJustBefore()
672 new_interval->first_safepoint_ = new_last_safepoint->GetNext(); in SplitAt()
750 current = current->GetNext(); in Dump()
1027 range = range->GetNext()) { in FindRangeAtOrAfter()
Dscheduler.cc329 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies()
368 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies()
668 instruction->MoveBefore(cursor->GetNext(), /* do_checks= */ false); in MoveAfterInBlock()
Dssa_phi_elimination.cc101 next = current->GetNext(); in EliminateDeadPhis()
Ddead_code_elimination.cc247 first->GetNext() == last && in SimplifyAlwaysThrows()
337 (first->GetNext() == last) && in SimplifyIfs()
Dinduction_var_analysis_test.cc1221 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
1247 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
1273 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
1299 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
1324 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
1349 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F()
Dgraph_checker.cc170 if (current->GetNext() == nullptr && current != block->GetLastPhi()) { in VisitBasicBlock()
187 if (current->GetNext() == nullptr && current != block->GetLastInstruction()) { in VisitBasicBlock()
848 HInstruction* next_phi = phi->GetNext(); in VisitPhi()
894 HInstruction* next_phi = phi->GetNext(); in VisitPhi()
Dregister_allocator.cc82 current_range_ = current_range_->GetNext(); in Advance()
Dscheduler_arm64.cc191 (block->IsEntryBlock() && instruction->GetNext()->IsGoto())); in VisitSuspendCheck()
Dnodes.cc245 instruction = instruction->GetNext(); in GetFirstInstructionDisregardMoves()
1144 HInstruction* next = GetNext(); in GetNextDisregardingMoves()
1146 next = next->GetNext(); in GetNextDisregardingMoves()
1921 new_block->instructions_.first_instruction_ = cursor->GetNext(); in SplitAfterForInlining()
2010 return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr; in HasSinglePhi()
2054 for (; current != nullptr; current = current->GetNext()) { in CountSize()
2063 current = current->GetNext()) { in SetBlockOfInstructions()
2866 for (; current != other && current != nullptr; current = current->GetNext()) { in HasAnyEnvironmentUseBefore()
Dreference_type_propagation.cc237 ? start_instruction->GetNext() in BoundTypeIn()
716 HBoundType* bound_type = check_cast->GetNext()->AsBoundType(); in VisitCheckCast()
Dbounds_check_elimination.cc541 next_ = instruction->GetNext(); in VisitBasicBlock()
547 next_ = instruction->GetNext(); in VisitBasicBlock()
2000 next_ = next_->GetNext(); in ReplaceInstruction()
Dscheduler_arm.cc1047 (block->IsEntryBlock() && instruction->GetNext()->IsGoto())); in VisitSuspendCheck()
Dinstruction_simplifier.cc213 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext()); in TryMoveNegOnInputsAfterBinop()
2342 invoke->GetBlock()->InsertInstructionBefore(condition, invoke->GetNext()); in SimplifyFP2Int()
2345 invoke->GetBlock()->InsertInstructionBefore(select, condition->GetNext()); in SimplifyFP2Int()
Dgraph_visualizer.cc73 for (T* current = first_entry; current != nullptr; current = current->GetNext()) { in StringList()
/art/runtime/
Dsubtype_check_info_test.cc232 /*depth=*/0u).GetNext()); in TEST_F()
235 /*depth=*/1u).GetNext()); in TEST_F()
238 /*depth=*/2u).GetNext()); in TEST_F()
241 /*depth=*/2u).GetNext()); in TEST_F()
316 EXPECT_EQ(MakeBitStringChar(1u), sci.GetNext()); // Next>=1 to disambiguate from Uninitialized. in TEST_F()
321 EXPECT_EQ(MakeBitStringChar(1u), root.GetNext()); in TEST_F()
325 EXPECT_EQ(MakeBitStringChar(2u), root.GetNext()); // Next incremented for Assign. in TEST_F()
341 EXPECT_EQ(MakeBitStringChar(1u), root.GetNext()); in TEST_F()
345 EXPECT_EQ(MakeBitStringChar(2u), root.GetNext()); // Next incremented for Assign. in TEST_F()
351 EXPECT_EQ(MakeBitStringChar(1u), root.GetNext()); in TEST_F()
[all …]
Dsubtype_check_info.h201 io.SetNext(io.GetNext() + 1u); in CreateRoot()
246 BitStringChar next = GetNext(); in CreateChild()
283 DCHECK(!HasNext() || GetNext() != 0u) in GetState()
285 << GetNext() << " path: " << path_to_root; in GetState()
311 BitStringChar GetNext() const { in GetNext() function
345 did_overlap = (GetNext() != 0u); in SubtypeCheckInfo()
350 DCHECK_EQ(next, GetNext()); in SubtypeCheckInfo()
392 SetNextUnchecked(GetNext()+1u); in MaybeInitNext()
Dthread.cc457 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext() function in art::FrameIdToShadowFrame
482 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
556 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
561 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
563 prev = record, record = record->GetNext()) { in RemoveDebuggerShadowFrameMapping()
565 prev->SetNext(record->GetNext()); in RemoveDebuggerShadowFrameMapping()
4037 record = record->GetNext()) { in VisitRoots()

12