// Copyright 2009 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_REGEXP_REGEXP_STACK_H_ #define V8_REGEXP_REGEXP_STACK_H_ #include "new-regexp/regexp-shim.h" namespace v8 { namespace internal { class RegExpStack; // Maintains a per-v8thread stack area that can be used by irregexp // implementation for its backtracking stack. // Since there is only one stack area, the Irregexp implementation is not // re-entrant. I.e., no regular expressions may be executed in the same thread // during a preempted Irregexp execution. class RegExpStackScope { public: // Create and delete an instance to control the life-time of a growing stack. // Initializes the stack memory area if necessary. explicit RegExpStackScope(Isolate* isolate); ~RegExpStackScope(); // Releases the stack if it has grown. RegExpStack* stack() const { return regexp_stack_; } private: RegExpStack* regexp_stack_; DISALLOW_COPY_AND_ASSIGN(RegExpStackScope); }; class RegExpStack { public: RegExpStack(); ~RegExpStack(); // Number of allocated locations on the stack below the limit. // No sequence of pushes must be longer that this without doing a stack-limit // check. static constexpr int kStackLimitSlack = 32; // Gives the top of the memory used as stack. Address stack_base() { DCHECK_NE(0, thread_local_.memory_size_); DCHECK_EQ(thread_local_.memory_top_, thread_local_.memory_ + thread_local_.memory_size_); return reinterpret_cast
(thread_local_.memory_top_); } // The total size of the memory allocated for the stack. size_t stack_capacity() { return thread_local_.memory_size_; } // If the stack pointer gets below the limit, we should react and // either grow the stack or report an out-of-stack exception. // There is only a limited number of locations below the stack limit, // so users of the stack should check the stack limit during any // sequence of pushes longer that this. Address* limit_address_address() { return &(thread_local_.limit_); } // Ensures that there is a memory area with at least the specified size. // If passing zero, the default/minimum size buffer is allocated. Address EnsureCapacity(size_t size); // Thread local archiving. static constexpr int ArchiveSpacePerThread() { return static_cast