Home
last modified time | relevance | path

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

12

/art/compiler/optimizing/
Dlive_ranges_test.cc80 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
126 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
174 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
185 range = range->GetNext(); in TEST_F()
189 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
197 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
251 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
259 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
267 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
275 ASSERT_TRUE(range->GetNext() == nullptr); in TEST_F()
[all …]
Dgvn.cc105 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Lookup()
121 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in Contains()
178 for (Node* node = other.buckets_[i]; node != nullptr; node = node->GetNext()) { in PopulateFromInternal()
196 Node* GetNext() const { return next_; } in GetNext() function in art::ValueSet::Node
220 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) { in CloneBucket()
257 node = (previous == nullptr) ? buckets_[i] : previous->GetNext(); in DeleteAllImpureWhich()
261 node = node->GetNext(); in DeleteAllImpureWhich()
272 Node* next = node->GetNext(); in DeleteAllImpureWhich()
478 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()
Dssa_builder.cc91 HInstruction* next = phi->GetNext(); in FixEnvironmentPhis()
95 next = next->GetNext(); in FixEnvironmentPhis()
98 DCHECK(!phi->IsVRegEquivalentOf(next->GetNext())); in FixEnvironmentPhis()
281 HInstruction* next = aget->GetNext(); in FindFloatOrDoubleEquivalentOfArrayGet()
570 HFloatConstant* result = constant->GetNext()->AsFloatConstant(); in GetFloatEquivalent()
574 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetFloatEquivalent()
592 HDoubleConstant* result = constant->GetNext()->AsDoubleConstant(); in GetDoubleEquivalent()
596 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetDoubleEquivalent()
617 HInstruction* next = phi->GetNext(); in GetFloatDoubleOrReferenceEquivalentOfPhi()
622 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()
Dprepare_for_register_allocation.cc150 if (condition->GetNext() != user) { in CanEmitConditionAt()
268 for (HInstruction* between = input->GetNext(); between != user; between = between->GetNext()) { in CanMoveClinitCheck()
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()
581 at = at->GetNext(); in InsertParallelMoveAt()
597 move = at->GetNext()->AsParallelMove(); in InsertParallelMoveAt()
603 at->GetBlock()->InsertInstructionBefore(move, at->GetNext()); in InsertParallelMoveAt()
690 HParallelMove* move = instruction->GetNext()->AsParallelMove(); in InsertMoveAfter()
697 instruction->GetBlock()->InsertInstructionBefore(move, instruction->GetNext()); in InsertMoveAfter()
Dssa_liveness_analysis.h72 LiveRange* GetNext() const { return next_; } in GetNext() function
241 SafepointPosition* GetNext() const { in GetNext() function
427 after_loop = after_loop->GetNext(); in AddLoopRange()
520 my_range = my_range->GetNext(); in FirstIntersectionWith()
525 other_range = other_range->GetNext(); in FirstIntersectionWith()
626 safepoint = safepoint->GetNext()) { in HasWillCallSafepoint()
635 previous = safepoint, safepoint = safepoint->GetNext()) { in FindSafepointJustBefore()
666 new_interval->first_safepoint_ = new_last_safepoint->GetNext(); in SplitAt()
744 current = current->GetNext(); in Dump()
1021 range = range->GetNext()) { in FindRangeAtOrAfter()
Dscheduler.cc296 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies()
334 for (HInstruction* other = instruction->GetNext(); other != nullptr; other = other->GetNext()) { in AddDependencies()
646 instruction->MoveBefore(cursor->GetNext(), /* do_checks */ false); in MoveAfterInBlock()
Dssa_phi_elimination.cc100 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.cc140 if (current->GetNext() == nullptr && current != block->GetLastPhi()) { in VisitBasicBlock()
157 if (current->GetNext() == nullptr && current != block->GetLastInstruction()) { in VisitBasicBlock()
763 HInstruction* next_phi = phi->GetNext(); in VisitPhi()
809 HInstruction* next_phi = phi->GetNext(); in VisitPhi()
Dscheduler_arm64.cc191 (block->IsEntryBlock() && instruction->GetNext()->IsGoto())); in VisitSuspendCheck()
Dregister_allocator.cc93 current_range_ = current_range_->GetNext(); in Advance()
Dnodes.cc243 instruction = instruction->GetNext(); in GetFirstInstructionDisregardMoves()
1125 HInstruction* next = GetNext(); in GetNextDisregardingMoves()
1127 next = next->GetNext(); in GetNextDisregardingMoves()
1880 new_block->instructions_.first_instruction_ = cursor->GetNext(); in SplitAfterForInlining()
1964 return !GetPhis().IsEmpty() && GetFirstPhi()->GetNext() == nullptr; in HasSinglePhi()
2008 for (; current != nullptr; current = current->GetNext()) { in CountSize()
2017 current = current->GetNext()) { in SetBlockOfInstructions()
2812 for (; current != other && current != nullptr; current = current->GetNext()) { in HasAnyEnvironmentUseBefore()
Dreference_type_propagation.cc257 ? start_instruction->GetNext() in BoundTypeIn()
724 HBoundType* bound_type = check_cast->GetNext()->AsBoundType(); in VisitCheckCast()
Dbounds_check_elimination.cc541 next_ = instruction->GetNext(); in VisitBasicBlock()
547 next_ = instruction->GetNext(); in VisitBasicBlock()
1897 next_ = next_->GetNext(); in ReplaceInstruction()
Dinstruction_simplifier.cc199 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext()); in TryMoveNegOnInputsAfterBinop()
2313 invoke->GetBlock()->InsertInstructionBefore(condition, invoke->GetNext()); in SimplifyFP2Int()
2316 invoke->GetBlock()->InsertInstructionBefore(select, condition->GetNext()); in SimplifyFP2Int()
Dgraph_visualizer.cc70 for (T* current = first_entry; current != nullptr; current = current->GetNext()) { in StringList()
Dscheduler_arm.cc1047 (block->IsEntryBlock() && instruction->GetNext()->IsGoto())); in VisitSuspendCheck()
/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.cc315 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext() function in art::FrameIdToShadowFrame
340 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
398 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
403 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
405 prev = record, record = record->GetNext()) { in RemoveDebuggerShadowFrameMapping()
407 prev->SetNext(record->GetNext()); in RemoveDebuggerShadowFrameMapping()
3793 record = record->GetNext()) { in VisitRoots()

12