Home | History | Annotate | Download | only in JavaScriptCore

Lines Matching full:recursion

2506         We still allow about 20,000 levels of recursion.
2644 actually lock a mutex, or only to increment recursion count. We cannot turn it into no-op
2646 Made recursion count per-thread, now that locks may not lock.
5786 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the profiler.
5795 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the
5797 - Remove the last of the uses of recursion in the profiler.
5805 (KJS::Profile::focus): Implemented focus without recursion.
5814 (KJS::ProfileNode::focus): Implemented focus without recursion.
7103 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the
7105 - Remove recursion from exclude(). This leaves only focus() to fix.
7121 recursion.
7122 (KJS::ProfileNode::exclude): Remove recursion from this function.
7652 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the
7655 recursion to using iteration.
7661 (KJS::Profile::stopProfiling): Use foreach instead of recursion.
7664 * profiler/ProfileNode.cpp: Remove recursion.
7829 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the
7831 - This patch removes the use of recursion for the sort functions.
8225 <rdar://problem/5969992> JSProfiler: Remove the recursion limit in the
8227 Implement Next Sibling pointers as groundwork for removing the recursion
8264 Removed the recursion limit from JSObject::call, since the VM does
8265 recursion checking now.
8738 <rdar://problem/5960012> JSProfiler: Stack overflow if recursion is
8740 -Use a simple depth limit to restrict too deep of recursion.
8886 Fix <rdar://problem/5954997> global-recursion-on-full-stack.html crashes under guardmalloc.
9151 Roll out r34020 as it causes recursion tests to fail.
9179 Removed the old recursion guard mechanism, since squirrelfish has its
11217 Bug 18628: SQUIRRELFISH: need to support recursion limit
11220 Basically completes recursion limiting. There is still some
11245 Bug 18628: SQUIRRELFISH: need to support recursion limit
11248 Put a limit on the level of reentry recursion. 128 levels of re-entrant recursion
11282 Bug 18628: SQUIRRELFISH: need to support recursion limit
11357 Bug 18628: SQUIRRELFISH: need to support recursion limit
16393 * kjs/ExecState.h: (KJS::ExecState::functionCallDepth): Added a recursion depth counter to
16401 (KJS::JSObject::call): Use a per-thread variable instead of local static for recursion depth
17060 * wtf/HashFunctions.h: Explicitly use the superclass implementation of hash to avoid infinite recursion.
23452 * pcre/pcre.h: Changed name of error code to not specifically mention "recursion".
23979 the recursion limit, then running out of memory, and finally an unexpected internal error.
24499 Test: fast/js/recursion-limit-equal.html
24994 Remove redundant match_call_count and move recursion check out of super-hot code path