Searched defs:stack (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dinstrumentation.cc207 // need to push a DEX pc into the dex_pcs_ list to match size of instrumentation stack.
247 // Insert frame at the right position so we do not corrupt the instrumentation stack.
248 // Instrumentation stack frames are in descending frame id order.
286 // Create method enter events for all methods currently on the thread's stack. We only do this
379 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); local
380 if (stack->size() > 0) {
386 CHECK_EQ(visitor.frames_removed_, stack->size());
387 while (stack->size() > 0) {
388 stack->pop_front();
587 // Restore stack onl
962 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
979 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
1036 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local
[all...]
H A Dprofiler.cc57 // Walk through the method within depth of max_depth_ on the Java stack
60 BoundedStackVisitor(std::vector<std::pair<ArtMethod*, uint32_t>>* stack,
64 stack_(stack),
109 std::vector<InstructionLocation> stack; local
111 BoundedStackVisitor bounded_stack_visitor(&stack, thread, max_depth);
113 profiler->RecordStack(stack);
445 // Record the current bounded stack into sampling results.
446 void BackgroundMethodSamplingProfiler::RecordStack(const std::vector<InstructionLocation>& stack) { argument
447 if (stack.size() == 0) {
450 // Get the method on top of the stack
502 PutStack(const std::vector<InstructionLocation>& stack) argument
[all...]
/art/runtime/gc/
H A Dheap.cc93 // How many reserve entries are at the end of the allocation stack, these are only needed if the
94 // allocation stack overflows.
96 // Default mark stack size in bytes.
106 // GC alot mode uses a small allocation stack to stress test a lot of GC.
109 // Verify objet has a small allocation stack size since searching the allocation stack is slow.
177 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
455 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize,
459 "allocation stack", max_allocation_stack_size_, alloc_stack_capacity));
461 "live stack", max_allocation_stack_size
862 MarkAllocStackAsLive(accounting::ObjectStack* stack) argument
2322 MarkAllocStack(accounting::ContinuousSpaceBitmap* bitmap1, accounting::ContinuousSpaceBitmap* bitmap2, accounting::LargeObjectBitmap* large_objects, accounting::ObjectStack* stack) argument
[all...]

Completed in 165 milliseconds