Lines Matching defs:limit
3639 uint32_t limit = control_.back().stack_depth;
3640 if (V8_LIKELY(stack_size() >= count + limit)) return 0;
3641 return EnsureStackArguments_Slow(count, limit);
3644 V8_NOINLINE int EnsureStackArguments_Slow(int count, uint32_t limit) {
3646 NotEnoughArgumentsError(count, stack_size() - limit);
3652 int current_values = stack_size() - limit;
5212 uint32_t limit = control_.back().stack_depth;
5213 if (V8_UNLIKELY(stack_size() <= limit + depth)) {
5217 NotEnoughArgumentsError(depth + 1, stack_size() - limit);
5238 uint32_t limit = control_.back().stack_depth;
5239 if (V8_UNLIKELY(stack_size() < limit + count)) {
5241 count = std::min(count, static_cast<int>(stack_size() - limit));