/external/v8/src/full-codegen/ |
D | full-codegen.h | 130 virtual NestedStatement* Exit(int* stack_depth, int* context_length) { in Exit() argument 135 virtual NestedStatement* AccumulateDepth(int* stack_depth) { in AccumulateDepth() argument 194 NestedStatement* Exit(int* stack_depth, int* context_length) override { in Exit() argument 210 NestedStatement* Exit(int* stack_depth, int* context_length) override { in Exit() argument 211 *stack_depth += kElementCount; in Exit() 214 NestedStatement* AccumulateDepth(int* stack_depth) override { in AccumulateDepth() argument 215 *stack_depth += kElementCount; in AccumulateDepth() 229 NestedStatement* Exit(int* stack_depth, int* context_length) override; 230 NestedStatement* AccumulateDepth(int* stack_depth) override { in AccumulateDepth() argument 231 *stack_depth += kElementCount; in AccumulateDepth() [all …]
|
D | full-codegen.cc | 130 table->SetRangeDepth(i, handler_table_[i].stack_depth); in PopulateHandlerTable() 851 int stack_depth = 0; in VisitContinueStatement() local 859 current = current->Exit(&stack_depth, &context_length); in VisitContinueStatement() 861 __ Drop(stack_depth); in VisitContinueStatement() 879 int stack_depth = 0; in VisitBreakStatement() local 887 current = current->Exit(&stack_depth, &context_length); in VisitBreakStatement() 889 __ Drop(stack_depth); in VisitBreakStatement() 905 int stack_depth = 0; in EmitUnwindBeforeReturn() local 908 current = current->Exit(&stack_depth, &context_length); in EmitUnwindBeforeReturn() 910 __ Drop(stack_depth); in EmitUnwindBeforeReturn() [all …]
|
/external/valgrind/perf/ |
D | many-loss-records.c | 20 int stack_depth = 4; variable 86 if (level == stack_depth) { in call_stack() 203 for (d = 0; d < stack_depth; d++) in main()
|
/external/strace/ |
D | unwind.c | 358 int stack_depth; in stacktrace_walk() local 370 for (stack_depth = 0; stack_depth < 256; ++stack_depth) { in stacktrace_walk() 377 if (stack_depth >= 256) in stacktrace_walk()
|
/external/v8/src/crankshaft/ |
D | hydrogen-bce.cc | 360 int stack_depth = 1; in EliminateRedundantBoundsChecks() local 363 while (stack_depth > 0) { in EliminateRedundantBoundsChecks() 364 int current = stack_depth - 1; in EliminateRedundantBoundsChecks() 371 int next = stack_depth++; in EliminateRedundantBoundsChecks() 378 stack_depth--; in EliminateRedundantBoundsChecks()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_blorp_blit.cpp | 1287 unsigned stack_depth = 0; in manual_blend() local 1289 assert(stack_depth == _mesa_bitcount(i)); /* Loop invariant */ in manual_blend() 1292 assert(stack_depth < ARRAY_SIZE(texture_data)); in manual_blend() 1299 texel_fetch(texture_data[stack_depth++]); in manual_blend() 1323 assert(stack_depth >= 2); in manual_blend() 1324 --stack_depth; in manual_blend() 1328 combine_op(&func, offset(texture_data[stack_depth - 1], 2*k), in manual_blend() 1329 offset(vec8(texture_data[stack_depth - 1]), 2*k), in manual_blend() 1330 offset(vec8(texture_data[stack_depth]), 2*k)); in manual_blend() 1336 assert(stack_depth == 1); in manual_blend()
|
/external/v8/src/compiler/ |
D | scheduler.cc | 740 int stack_depth = Push(stack_, 0, entry, kBlockUnvisited1); in ComputeAndInsertSpecialRPO() local 743 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO() 744 int current = stack_depth - 1; in ComputeAndInsertSpecialRPO() 762 stack_depth = Push(stack_, stack_depth, succ, kBlockUnvisited1); in ComputeAndInsertSpecialRPO() 768 stack_depth--; in ComputeAndInsertSpecialRPO() 787 stack_depth = Push(stack_, 0, entry, kBlockUnvisited2); in ComputeAndInsertSpecialRPO() 788 while (stack_depth > 0) { in ComputeAndInsertSpecialRPO() 789 SpecialRPOStackFrame* frame = &stack_[stack_depth - 1]; in ComputeAndInsertSpecialRPO() 834 stack_depth = Push(stack_, stack_depth, succ, kBlockUnvisited2); in ComputeAndInsertSpecialRPO() 862 stack_depth--; in ComputeAndInsertSpecialRPO()
|
D | ast-graph-builder.cc | 2644 int stack_depth = -1; in VisitCountOperation() local 2653 stack_depth = 0; in VisitCountOperation() 2666 stack_depth = 1; in VisitCountOperation() 2680 stack_depth = 2; in VisitCountOperation() 2695 stack_depth = 2; in VisitCountOperation() 2711 stack_depth = 3; in VisitCountOperation() 2731 environment()->Poke(stack_depth, old_value); in VisitCountOperation()
|
/external/v8/src/wasm/ |
D | ast-decoder.cc | 81 int stack_depth; // production stack depth. member 360 blocks_.back().stack_depth = -1; // no production for inner block. in DecodeFunctionBody() 673 DCHECK_EQ(stack_.size() - 1, last->stack_depth); in Reduce() 687 DCHECK_EQ(stack_.size() - 1, last->stack_depth); in Reduce() 1033 if (block->stack_depth < 0) { in ReduceBreakToExprBlock() 1038 Production* bp = &stack_[block->stack_depth]; in ReduceBreakToExprBlock()
|
/external/v8/src/regexp/ |
D | interpreter-irregexp.cc | 69 int stack_depth, in TraceInterpreter() argument 82 stack_depth, in TraceInterpreter()
|
/external/v8/src/ |
D | objects.h | 4723 int LookupRange(int pc_offset, int* stack_depth, CatchPrediction* prediction);
|
D | objects.cc | 10976 int stack_depth = Smi::cast(get(i + kRangeDepthIndex))->value(); in LookupRange() local 10982 *stack_depth_out = stack_depth; in LookupRange()
|