/art/runtime/jit/ |
D | debugger_interface.cc | 40 JITCodeEntry* next_; member 88 entry->next_ = __jit_debug_descriptor.first_entry_; in CreateJITCodeEntryInternal() 89 if (entry->next_ != nullptr) { in CreateJITCodeEntryInternal() 90 entry->next_->prev_ = entry; in CreateJITCodeEntryInternal() 102 entry->prev_->next_ = entry->next_; in DeleteJITCodeEntryInternal() 104 __jit_debug_descriptor.first_entry_ = entry->next_; in DeleteJITCodeEntryInternal() 107 if (entry->next_ != nullptr) { in DeleteJITCodeEntryInternal() 108 entry->next_->prev_ = entry->prev_; in DeleteJITCodeEntryInternal()
|
/art/runtime/base/ |
D | arena_allocator.cc | 128 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) { in Dump() 178 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) { in Arena() 292 free_arenas_ = free_arenas_->next_; in ReclaimMemory() 309 free_arenas_ = free_arenas_->next_; in AllocArena() 325 for (auto* arena = free_arenas_; arena != nullptr; arena = arena->next_) { in TrimMaps() 334 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) { in GetBytesAllocated() 342 for (Arena* arena = first; arena != nullptr; arena = arena->next_) { in FreeArenaChain() 348 while (last->next_ != nullptr) { in FreeArenaChain() 349 last = last->next_; in FreeArenaChain() 353 last->next_ = free_arenas_; in FreeArenaChain() [all …]
|
D | scoped_arena_allocator.cc | 60 top_arena_->next_ = nullptr; in AllocateFromNextArena() 61 } else if (top_arena_->next_ != nullptr && top_arena_->next_->Size() >= allocation_size) { in AllocateFromNextArena() 62 top_arena_ = top_arena_->next_; in AllocateFromNextArena() 64 Arena* tail = top_arena_->next_; in AllocateFromNextArena() 65 top_arena_->next_ = stats_and_pool_.pool->AllocArena(allocation_size); in AllocateFromNextArena() 66 top_arena_ = top_arena_->next_; in AllocateFromNextArena() 67 top_arena_->next_ = tail; in AllocateFromNextArena()
|
D | arena_allocator.h | 234 Arena* next_; variable
|
D | arena_allocator_test.cc | 28 for (Arena* a = arena->arena_head_; a != nullptr; a = a->next_) { in NumberOfArenas()
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 61 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { in LiveRange() 63 DCHECK(next_ == nullptr || next_->GetStart() > GetEnd()); in LiveRange() 68 LiveRange* GetNext() const { return next_; } in GetNext() 85 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator)); in Dup() 89 return next_ == nullptr ? this : next_->GetLastRange(); in GetLastRange() 95 LiveRange* next_; variable 111 next_(next) { in UsePosition() 112 DCHECK(next_ == nullptr || next->GetPosition() >= GetPosition()); in UsePosition() 119 next_(nullptr) { in UsePosition() 124 UsePosition* GetNext() const { return next_; } in GetNext() [all …]
|
D | nodes.cc | 961 last_instruction_->next_ = instruction; in AddInstruction() 971 instruction->next_ = cursor; in InsertInstructionBefore() 975 instruction->next_ = cursor; in InsertInstructionBefore() 977 instruction->previous_->next_ = instruction; in InsertInstructionBefore() 984 cursor->next_ = instruction; in InsertInstructionAfter() 988 instruction->next_ = cursor->next_; in InsertInstructionAfter() 990 cursor->next_ = instruction; in InsertInstructionAfter() 991 instruction->next_->previous_ = instruction; in InsertInstructionAfter() 997 instruction->previous_->next_ = instruction->next_; in RemoveInstruction() 999 if (instruction->next_ != nullptr) { in RemoveInstruction() [all …]
|
D | gvn.cc | 204 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node() 208 Node* GetNext() const { return next_; } in GetNext() 209 void SetNext(Node* node) { next_ = node; } in SetNext() 218 Node* next_; member in art::ValueSet::Node
|
D | bounds_check_elimination.cc | 532 next_(nullptr) {} in BCEVisitor() 542 next_ = instruction->GetNext(); in VisitBasicBlock() 544 instruction = next_; in VisitBasicBlock() 548 next_ = instruction->GetNext(); in VisitBasicBlock() 550 instruction = next_; in VisitBasicBlock() 1809 if (instruction == next_) { in ReplaceInstruction() 1810 next_ = next_->GetNext(); in ReplaceInstruction() 1846 HInstruction* next_; member in art::BCEVisitor
|
D | nodes.h | 1872 next_(nullptr), in HInstruction() 1895 HInstruction* GetNext() const { return next_; } in GetNext() 2305 HInstruction* next_; variable 2364 next_ = Done() ? nullptr : instruction_->GetNext(); in HInstructionIterator() 2370 instruction_ = next_; in Advance() 2371 next_ = Done() ? nullptr : instruction_->GetNext(); in Advance() 2376 HInstruction* next_; variable 2407 next_ = Done() ? nullptr : instruction_->GetPrevious(); in HBackwardInstructionIterator() 2413 instruction_ = next_; in Advance() 2414 next_ = Done() ? nullptr : instruction_->GetPrevious(); in Advance() [all …]
|
/art/compiler/utils/ |
D | assembler.h | 69 SlowPath() : next_(nullptr) {} in SlowPath() 83 SlowPath *next_; variable 142 for ( ; cur->next_ != nullptr ; cur = cur->next_) {} in EnqueueSlowPath() 143 cur->next_ = slowpath; in EnqueueSlowPath() 153 next = cur->next_; in EmitSlowPaths()
|
/art/runtime/gc/allocator/ |
D | rosalloc.h | 119 return next_; in Next() 122 next_ = next; in SetNext() 129 next_ = nullptr; in Clear() 133 Slot* next_; // Next slot in the list. 840 return OFFSETOF_MEMBER(Slot, next_); in RunSlotNextOffset()
|
/art/runtime/mirror/ |
D | reference.h | 146 HeapReference<FinalizerReference> next_;
|
/art/runtime/ |
D | thread.cc | 295 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext() 296 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext() 307 next_(next) {} in FrameIdToShadowFrame() 311 FrameIdToShadowFrame* next_; member in art::FrameIdToShadowFrame
|
D | class_linker_test.cc | 700 addOffset(OFFSETOF_MEMBER(mirror::FinalizerReference, next_), "next"); in FinalizerReferenceOffsets()
|