HomeSort by relevance Sort by last modified time
    Searched refs:operands_count (Results 1 - 2 of 2) sorted by null

  /external/v8/src/runtime/
runtime-generator.cc 57 int operands_count = frame->ComputeOperandsCount(); local
58 DCHECK_GE(operands_count, 1 + args.length());
59 operands_count -= 1 + args.length();
69 int handler_depth = operands_count - TryBlockConstant::kElementCount;
73 if (operands_count == 0) {
75 // operands_count of zero, it is also unnecessary.
80 isolate->factory()->NewFixedArray(operands_count);
122 int operands_count = operand_stack->length(); local
123 if (operands_count != 0) {
  /external/v8/src/
frames.cc 882 int operands_count = store->length(); local
883 DCHECK_LE(operands_count, ComputeOperandsCount());
884 for (int i = 0; i < operands_count; i++) {
891 int operands_count = store->length(); local
892 DCHECK_LE(operands_count, ComputeOperandsCount());
893 for (int i = 0; i < operands_count; i++) {
    [all...]

Completed in 50 milliseconds