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

  /external/v8/src/
code-stubs-hydrogen.cc 70 .is(descriptor_.stack_parameter_count());
111 bool runtime_stack_params = descriptor_.stack_parameter_count().is_valid();
112 HInstruction* stack_parameter_count = NULL; local
126 stack_parameter_count = param;
127 arguments_length_ = stack_parameter_count;
133 stack_parameter_count =
151 HInstruction* stack_pop_count = stack_parameter_count;
153 if (!stack_parameter_count->IsConstant() &&
156 stack_pop_count = AddUncasted<HAdd>(stack_parameter_count, constant_one);
158 // TODO(mvstanton): verify that stack_parameter_count+1 really fits in
    [all...]
  /external/v8/src/compiler/
code-assembler.cc 579 int stack_parameter_count = argc - descriptor.GetRegisterParameterCount(); local
580 DCHECK_LE(descriptor.GetStackParameterCount(), stack_parameter_count);
582 isolate(), zone(), descriptor, stack_parameter_count,

Completed in 43 milliseconds