Home
last modified time | relevance | path

Searched refs:next (Results 51 – 75 of 78) sorted by relevance

1234

/art/test/530-checker-regression-reftyp-final/smali/
DTestCase.smali22 # overwritten by the next pass of reference type propagation. Since we do not
/art/compiler/optimizing/
Dloop_optimization.cc586 DCHECK(last_loop_->next == nullptr); in AddLoop()
587 last_loop_ = last_loop_->next = node; in AddLoop()
596 node->previous->next = node->next; in RemoveLoop()
597 if (node->next != nullptr) { in RemoveLoop()
598 node->next->previous = node->previous; in RemoveLoop()
603 node->outer->inner = node->next; in RemoveLoop()
605 top_loop_ = node->next; in RemoveLoop()
607 if (node->next != nullptr) { in RemoveLoop()
608 node->next->outer = node->outer; in RemoveLoop()
609 node->next->previous = nullptr; in RemoveLoop()
[all …]
Dssa_liveness_analysis.h65 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { in LiveRange() argument
246 void SetNext(SafepointPosition* next) { in SetNext() argument
247 next_ = next; in SetNext()
Dloop_optimization_test.cc111 for ( ; node != nullptr; node = node->next) { in LoopStructureRecurse()
Dnodes.cc1144 HInstruction* next = GetNext(); in GetNextDisregardingMoves() local
1145 while (next != nullptr && next->IsParallelMove()) { in GetNextDisregardingMoves()
1146 next = next->GetNext(); in GetNextDisregardingMoves()
1148 return next; in GetNextDisregardingMoves()
Dnodes.h2571 auto next = ++HUseList<HInstruction*>::iterator(before_use_node); in FixUpUserRecordsAfterUseRemoval() local
2572 if (next != uses_.end()) { in FixUpUserRecordsAfterUseRemoval()
2573 HInstruction* next_user = next->GetUser(); in FixUpUserRecordsAfterUseRemoval()
2574 size_t next_index = next->GetIndex(); in FixUpUserRecordsAfterUseRemoval()
2591 auto next = ++HUseList<HEnvironment*>::iterator(before_env_use_node); in FixUpUserRecordsAfterEnvUseRemoval() local
2592 if (next != env_uses_.end()) { in FixUpUserRecordsAfterEnvUseRemoval()
2593 HEnvironment* next_user = next->GetUser(); in FixUpUserRecordsAfterEnvUseRemoval()
2594 size_t next_index = next->GetIndex(); in FixUpUserRecordsAfterEnvUseRemoval()
2912 HInstruction* next = GetNext(); in GetNextEquivalentPhiWithSameType() local
2913 while (next != nullptr && next->AsPhi()->GetRegNumber() == reg_number_) { in GetNextEquivalentPhiWithSameType()
[all …]
Dinstruction_builder.cc500 DexInstructionIterator next = std::next(DexInstructionIterator(inst)); in FindNativeDebugInfoLocations() local
501 DCHECK(next.DexPc() != inst.DexPc()); in FindNativeDebugInfoLocations()
502 if (next != code_item_accessor_.end()) { in FindNativeDebugInfoLocations()
503 locations->SetBit(next.DexPc()); in FindNativeDebugInfoLocations()
Dcode_generator.h199 bool GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const;
Dcode_generator.cc307 bool CodeGenerator::GoesToNextBlock(HBasicBlock* current, HBasicBlock* next) const { in GoesToNextBlock()
309 return GetNextBlockToEmit() == FirstNonEmptyBlock(next); in GoesToNextBlock()
Dinliner.cc170 HInstruction* next = instruction->GetNext(); in Run() local
195 instruction = next; in Run()
/art/runtime/interpreter/mterp/arm/
Dfloating_point.S23 GOTO_OPCODE ip @ jump to next instruction
Dmain.S427 GOTO_OPCODE ip @ jump to next instruction
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DSort.java110 res = iter.next().compare(a, b); in compare()
DParser.java599 RootData root = ri.next(); in parseInternal()
609 root = ri.next(); in parseInternal()
617 root = ri.next(); in parseInternal()
/art/runtime/
Dsubtype_check_info_test.cc97 BitStringChar next = {},
102 return SubtypeCheckInfo(path_to_root, next, overflow, depth);
Dthread.cc443 FrameIdToShadowFrame* next, in Create() argument
447 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next); in Create()
458 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext() argument
466 FrameIdToShadowFrame* next) in FrameIdToShadowFrame() argument
469 next_(next) {} in FrameIdToShadowFrame()
Dthread.h625 void SetWaitNext(Thread* next) { in SetWaitNext() argument
626 tlsPtr_.wait_next = next; in SetWaitNext()
/art/runtime/interpreter/mterp/
DREADME.txt71 transitioning from one Dalvik bytecode to the next. Mterp for ARM targets
/art/libdexfile/external/
Ddex_file_ext.cc160 for (auto it = std::next(cache.begin()); it != cache.end(); it++) { in GetClassDefIndex()
/art/runtime/gc/allocator/
Drosalloc.h121 void SetNext(Slot* next) { in SetNext() argument
122 next_ = next; in SetNext()
/art/test/924-threads/src/art/
DTest924.java242 Thread t = it.next(); in doAllThreadsTests()
/art/dexlayout/
Ddex_ir_builder.cc1018 SafeDexInstructionIterator next = it; in GetIdsFromByteCode() local
1019 ++next; in GetIdsFromByteCode()
1020 if (next.IsErrorState()) { in GetIdsFromByteCode()
Dcompact_dex_writer.cc173 if (std::next(it).IsErrorState()) { in WriteCodeItem()
/art/runtime/arch/
Dstub_test.cc517 uint32_t next() { in next() function in art::RandGen
590 size_t index = r.next() % kNumberOfLocks; in TestUnlockObject()
593 if (!fat[index] && (r.next() % kMoveToFat == 0)) { in TestUnlockObject()
612 take_lock = r.next() % 2 == 0; in TestUnlockObject()
/art/runtime/verifier/
Dmethod_verifier.cc1077 SafeDexInstructionIterator next = it; in ComputeWidthsAndCountOps() local
1078 ++next; in ComputeWidthsAndCountOps()
1079 if (next.IsErrorState()) { in ComputeWidthsAndCountOps()

1234