Home | History | Annotate | Download | only in src

Lines Matching full:stack

34 // Maintains a per-v8thread stack area that can be used by irregexp
35 // implementation for its backtracking stack.
36 // Since there is only one stack area, the Irregexp implementation is not
41 // Number of allocated locations on the stack below the limit.
42 // No sequence of pushes must be longer that this without doing a stack-limit
46 // Create and delete an instance to control the life-time of a growing stack.
47 RegExpStack(); // Initializes the stack memory area if necessary.
48 ~RegExpStack(); // Releases the stack if it has grown.
50 // Gives the top of the memory used as stack.
56 // The total size of the memory allocated for the stack.
59 // If the stack pointer gets below the limit, we should react and
60 // either grow the stack or report an out-of-stack exception.
61 // There is only a limited number of locations below the stack limit,
62 // so users of the stack should check the stack limit during any
82 // Minimal size of allocated stack area.
85 // Maximal size of allocated stack area.