Home
last modified time | relevance | path

Searched refs:stack_depth (Results 1 – 25 of 32) sorted by relevance

12

/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-util.c181 … || (CBC_STACK_ADJUST_BASE - (flags >> CBC_STACK_ADJUST_SHIFT)) <= context_p->stack_depth); in parser_flush_cbc()
182 PARSER_PLUS_EQUAL_U16 (context_p->stack_depth, CBC_STACK_ADJUST_VALUE (flags)); in parser_flush_cbc()
222 JERRY_ASSERT (context_p->stack_depth >= byte_argument); in parser_flush_cbc()
223 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, byte_argument); in parser_flush_cbc()
234 (int) context_p->stack_depth, in parser_flush_cbc()
275 if (context_p->stack_depth > context_p->stack_limit) in parser_flush_cbc()
277 context_p->stack_limit = context_p->stack_depth; in parser_flush_cbc()
481 JERRY_DEBUG_MSG (" [%3d] CBC_EXT_LINE %d\n", (int) context_p->stack_depth, line); in parser_emit_line_info()
557 … || (CBC_STACK_ADJUST_BASE - (flags >> CBC_STACK_ADJUST_SHIFT)) <= context_p->stack_depth); in parser_emit_cbc_forward_branch()
558 PARSER_PLUS_EQUAL_U16 (context_p->stack_depth, CBC_STACK_ADJUST_VALUE (flags)); in parser_emit_cbc_forward_branch()
[all …]
Djs-parser.c932 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, PARSER_BLOCK_CONTEXT_STACK_ALLOCATION); in parser_post_processing()
947 JERRY_ASSERT (context_p->stack_depth == 0); in parser_post_processing()
2039 context.stack_depth = 0; in parser_parse_source()
2308 saved_context_p->stack_depth = context_p->stack_depth; in parser_save_context()
2336 context_p->stack_depth = 0; in parser_save_context()
2381 context_p->stack_depth = saved_context_p->stack_depth; in parser_restore_context()
Djs-parser-expr.c95 && context_p->stack_depth >= context_p->stack_limit) in parser_push_result()
99 JERRY_ASSERT (context_p->stack_depth == context_p->stack_limit); in parser_push_result()
2228 JERRY_ASSERT (context_p->stack_depth > 0); in parser_process_unary_expression()
2229 context_p->stack_depth--; in parser_process_unary_expression()
2631 && (context_p->stack_depth >= context_p->stack_limit)) in parser_process_binary_opcodes()
2634 JERRY_ASSERT (context_p->stack_depth == context_p->stack_limit); in parser_process_binary_opcodes()
3207 JERRY_ASSERT (context_p->stack_depth > 0); in parser_process_ternary_expression()
3208 context_p->stack_depth--; in parser_process_ternary_expression()
Djs-parser-statm.c444 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, PARSER_BLOCK_CONTEXT_STACK_ALLOCATION); in parser_pop_block_context()
948 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, PARSER_WITH_CONTEXT_STACK_ALLOCATION); in parser_parse_with_statement_end()
1875 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, PARSER_TRY_CONTEXT_STACK_ALLOCATION); in parser_parse_try_statement_end()
1897 PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, PARSER_TRY_CONTEXT_STACK_ALLOCATION); in parser_parse_try_statement_end()
2644 JERRY_ASSERT (context_p->stack_depth <= 1); in parser_parse_statements()
2646 JERRY_ASSERT (context_p->context_stack_depth == context_p->stack_depth); in parser_parse_statements()
2742 JERRY_ASSERT (context_p->stack_depth == context_p->context_stack_depth); in parser_parse_statements()
3303 … PARSER_MINUS_EQUAL_U16 (context_p->stack_depth, is_for_in ? PARSER_FOR_IN_CONTEXT_STACK_ALLOCATION in parser_parse_statements()
Djs-parser-internal.h459 uint16_t stack_depth; /**< current stack depth */ member
506 uint16_t stack_depth; /**< current stack depth */ member
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
Dcbor.cc789 bool ParseMap(int32_t stack_depth,
792 bool ParseArray(int32_t stack_depth,
795 bool ParseValue(int32_t stack_depth,
798 bool ParseEnvelope(int32_t stack_depth,
818 bool ParseEnvelope(int32_t stack_depth, in ParseEnvelope() argument
835 if (!ParseMap(stack_depth + 1, tokenizer, out)) in ParseEnvelope()
839 if (!ParseArray(stack_depth + 1, tokenizer, out)) in ParseEnvelope()
857 bool ParseValue(int32_t stack_depth, in ParseValue() argument
860 if (stack_depth > kStackLimit) { in ParseValue()
874 return ParseEnvelope(stack_depth, tokenizer, out); in ParseValue()
[all …]
/third_party/node/tools/inspector_protocol/lib/
DValues_cpp.template97 std::unique_ptr<DictionaryValue> parseMap(int32_t stack_depth, cbor::CBORTokenizer* tokenizer);
98 std::unique_ptr<ListValue> parseArray(int32_t stack_depth, cbor::CBORTokenizer* tokenizer);
99 std::unique_ptr<Value> parseValue(int32_t stack_depth, cbor::CBORTokenizer* tokenizer);
104 std::unique_ptr<ListValue> parseArray(int32_t stack_depth, cbor::CBORTokenizer* tokenizer) {
113 auto value = parseValue(stack_depth, tokenizer);
122 int32_t stack_depth, cbor::CBORTokenizer* tokenizer) {
124 if (stack_depth > kStackLimitValues) return nullptr;
180 return parseMap(stack_depth + 1, tokenizer);
182 return parseArray(stack_depth + 1, tokenizer);
193 int32_t stack_depth, cbor::CBORTokenizer* tokenizer) {
[all …]
Dencoding_cpp.template933 bool ParseMap(int32_t stack_depth,
936 bool ParseArray(int32_t stack_depth,
939 bool ParseValue(int32_t stack_depth,
959 bool ParseValue(int32_t stack_depth,
962 if (stack_depth > kStackLimit) {
1009 return ParseMap(stack_depth + 1, tokenizer, out);
1011 return ParseArray(stack_depth + 1, tokenizer, out);
1022 bool ParseArray(int32_t stack_depth,
1039 if (!ParseValue(stack_depth, tokenizer, out))
1050 bool ParseMap(int32_t stack_depth,
[all …]
/third_party/node/tools/inspector_protocol/encoding/
Dencoding.cc925 bool ParseMap(int32_t stack_depth,
928 bool ParseArray(int32_t stack_depth,
931 bool ParseValue(int32_t stack_depth,
951 bool ParseValue(int32_t stack_depth, in ParseValue() argument
954 if (stack_depth > kStackLimit) { in ParseValue()
1001 return ParseMap(stack_depth + 1, tokenizer, out); in ParseValue()
1003 return ParseArray(stack_depth + 1, tokenizer, out); in ParseValue()
1014 bool ParseArray(int32_t stack_depth, in ParseArray() argument
1031 if (!ParseValue(stack_depth, tokenizer, out)) in ParseArray()
1042 bool ParseMap(int32_t stack_depth, in ParseMap() argument
[all …]
/third_party/node/deps/v8/src/compiler/
Dscheduler.cc814 int stack_depth = Push(0, entry, kBlockUnvisited1); in ComputeAndInsertSpecialRPO() local
817 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO()
818 int current = stack_depth - 1; in ComputeAndInsertSpecialRPO()
836 stack_depth = Push(stack_depth, succ, kBlockUnvisited1); in ComputeAndInsertSpecialRPO()
842 stack_depth--; in ComputeAndInsertSpecialRPO()
861 stack_depth = Push(0, entry, kBlockUnvisited2); in ComputeAndInsertSpecialRPO()
862 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO()
863 SpecialRPOStackFrame* frame = &stack_[stack_depth - 1]; in ComputeAndInsertSpecialRPO()
908 stack_depth = Push(stack_depth, succ, kBlockUnvisited2); in ComputeAndInsertSpecialRPO()
936 stack_depth--; in ComputeAndInsertSpecialRPO()
/third_party/node/deps/v8/src/profiler/
Dheap-profiler.cc108 uint64_t sample_interval, int stack_depth, in StartSamplingHeapProfiler() argument
114 heap(), names_.get(), sample_interval, stack_depth, flags)); in StartSamplingHeapProfiler()
Dsampling-heap-profiler.cc52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth, in SamplingHeapProfiler() argument
61 stack_depth_(stack_depth), in SamplingHeapProfiler()
Dheap-profiler.h39 bool StartSamplingHeapProfiler(uint64_t sample_interval, int stack_depth,
Dsampling-heap-profiler.h120 int stack_depth, v8::HeapProfiler::SamplingFlags flags);
/third_party/node/deps/v8/src/wasm/
Dfunction-body-decoder-impl.h833 uint32_t stack_depth = 0; // Stack height at the beginning of the construct.
846 ControlBase(ControlKind kind, uint32_t locals_count, uint32_t stack_depth,
852 stack_depth(stack_depth),
2651 DCHECK_LE(stack_ + c->stack_depth, stack_end_);
2652 stack_end_ = stack_ + c->stack_depth;
2657 base::Vector<Value> values(stack_ + c->stack_depth, sig->parameter_count());
2707 stack_end_ = stack_ + c->stack_depth;
3596 DCHECK_LE(stack_ + current->stack_depth, stack_end_);
3597 stack_end_ = stack_ + current->stack_depth;
3639 uint32_t limit = control_.back().stack_depth;
[all …]
/third_party/mesa3d/src/intel/blorp/
Dblorp_blit.c643 unsigned stack_depth = 0; in blorp_nir_combine_samples() local
645 assert(stack_depth == util_bitcount(i)); /* Loop invariant */ in blorp_nir_combine_samples()
648 assert(stack_depth < ARRAY_SIZE(texture_data)); in blorp_nir_combine_samples()
653 texture_data[stack_depth++] = blorp_nir_txf_ms(b, v, ms_pos, mcs, dst_type); in blorp_nir_combine_samples()
691 assert(stack_depth >= 2); in blorp_nir_combine_samples()
692 --stack_depth; in blorp_nir_combine_samples()
694 texture_data[stack_depth - 1] = in blorp_nir_combine_samples()
696 texture_data[stack_depth - 1], in blorp_nir_combine_samples()
697 texture_data[stack_depth], in blorp_nir_combine_samples()
703 assert(stack_depth == 1); in blorp_nir_combine_samples()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcKHRDebugTests.cpp2119 GLint stack_depth = 0; in inspectGroupStack() local
2121 m_gl->getIntegerv(GL_DEBUG_GROUP_STACK_DEPTH, &stack_depth); in inspectGroupStack()
2124 if (expected_depth != (GLuint)stack_depth) in inspectGroupStack()
2127 << "State of DEBUG_GROUP_STACK_DEPTH: " << stack_depth << ", expected " in inspectGroupStack()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-assembler.cc450 uint32_t stack_depth) { in InitMerge() argument
462 uint32_t stack_base = stack_depth + num_locals; in InitMerge()
523 stack_depth, kKeepStackSlots, kConstantsAllowed, in InitMerge()
Dliftoff-compiler.cc1297 target->stack_depth + target->num_exceptions); in Delegate()
1396 c->stack_depth + c->num_exceptions); in FallThruTo()
1433 c->stack_depth + c->num_exceptions); in FinishOneArmedIf()
1454 __ DropValue(__ num_locals() + c->stack_depth + c->num_exceptions); in FinishTry()
2614 target->stack_depth + target->num_exceptions); in BrImpl()
2742 c->stack_depth + c->num_exceptions); in Else()
3291 ? next_control->stack_depth + __ num_locals() + in GetCurrentDebugSideTableEntries()
4390 current_try->stack_depth + current_try->num_exceptions); in EmitLandingPad()
Dliftoff-assembler.h433 uint32_t arity, uint32_t stack_depth);
/third_party/node/deps/v8/include/
Dv8-profiler.h1069 int stack_depth = 16,
/third_party/node/deps/v8/src/regexp/
Dregexp-interpreter.cc78 int stack_depth, int current_position, in MaybeTraceInterpreter() argument
87 PrintF(format, pc - code_base, stack_depth, current_position, current_char, in MaybeTraceInterpreter()
/third_party/node/deps/v8/src/runtime/
Druntime-test.cc573 int stack_depth = 0; in RUNTIME_FUNCTION() local
576 stack_depth = args.smi_value_at(0); in RUNTIME_FUNCTION()
581 while (!it.done() && stack_depth--) it.Advance(); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/execution/
Disolate.cc4183 int stack_depth = 128; in ThrowInternal() local
4186 heap_profiler()->StartSamplingHeapProfiler(sample_interval, stack_depth, in ThrowInternal()
Dframes.cc1383 int* stack_depth, HandlerTable::CatchPrediction* prediction) { in LookupExceptionHandlerInTable() argument

12