Home
last modified time | relevance | path

Searched refs:stack_ (Results 1 – 6 of 6) sorted by relevance

/art/runtime/gc/
Dallocation_record.h82 stack_(std::move(r.stack_)) {} in AllocRecordStackTrace()
86 stack_(r.stack_) {} in AllocRecordStackTrace()
97 return stack_.size(); in GetDepth()
102 return stack_[index]; in GetStackElement()
106 stack_.push_back(element); in AddStackElement()
110 DCHECK_LT(index, stack_.size()); in SetStackElementAt()
111 stack_[index].SetMethod(m); in SetStackElementAt()
112 stack_[index].SetDexPc(dex_pc); in SetStackElementAt()
117 return tid_ == other.tid_ && stack_ == other.stack_;
122 std::vector<AllocRecordStackTraceElement> stack_; variable
/art/runtime/
Dthread_pool.cc50 stack_ = MemMap::MapAnonymous(name.c_str(), in ThreadPoolWorker()
55 CHECK(stack_.IsValid()) << error_msg; in ThreadPoolWorker()
56 CHECK_ALIGNED(stack_.Begin(), kPageSize); in ThreadPoolWorker()
59 stack_.Begin(), in ThreadPoolWorker()
65 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_.Begin(), stack_.Size()), reason); in ThreadPoolWorker()
Dthread_pool.h80 DCHECK(stack_.IsValid()); in GetStackSize()
81 return stack_.Size(); in GetStackSize()
98 MemMap stack_; variable
Dclass_linker.cc7411 stack_(runtime->GetLinearAlloc()->GetArenaPool()), in LinkInterfaceMethodsHelper()
7412 allocator_(&stack_), in LinkInterfaceMethodsHelper()
7525 ArenaStack stack_; member in art::ClassLinker::LinkInterfaceMethodsHelper
/art/compiler/optimizing/
Dinduction_var_analysis.cc233 stack_(graph->GetAllocator()->Adapter(kArenaAllocInductionVarAnalysis)), in HInductionVarAnalysis()
263 DCHECK(stack_.empty()); in VisitLoop()
287 DCHECK(stack_.empty()); in VisitLoop()
297 stack_.push_back(instruction); in VisitNode()
313 while (!stack_.empty()) { in VisitNode()
314 HInstruction* x = stack_.back(); in VisitNode()
316 stack_.pop_back(); in VisitNode()
Dinduction_var_analysis.h262 ArenaVector<HInstruction*> stack_; variable