Lines Matching refs:stack
38 // Returns a non-owning view of the current stack.
47 PrintF("Delete stack #%d\n", id_);
51 // We don't need to handle removing the last stack from the list (next_ ==
53 // at least one reachable stack (the active stack).
64 // Insert a stack in the linked list after this stack.
65 void Add(StackMemory* stack) {
66 stack->next_ = this->next_;
67 stack->prev_ = this;
68 this->next_->prev_ = stack;
69 this->next_ = stack;
88 // This constructor allocates a new stack segment.
100 PrintF("Allocate stack #%d\n", id_);
104 // Overload to represent a view of the libc stack.