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

  /external/v8/src/
scopeinfo.cc 72 const int parameter_count = scope->num_parameters(); local
74 + parameter_count + stack_local_count + 2 * context_local_count
86 scope_info->SetParameterCount(parameter_count);
93 for (int i = 0; i < parameter_count; ++i) {
frames.cc 881 int parameter_count = ComputeParametersCount(); local
882 int parameter_index = index + parameter_count;
    [all...]
lithium.h 447 int parameter_count,
457 parameter_count_(parameter_count),
471 int parameter_count() const { return parameter_count_; } function in class:v8::internal::LEnvironment
hydrogen.h 414 int parameter_count() const { return parameter_count_; } function in class:v8::internal::HEnvironment
426 return i >= parameter_count() && i < parameter_count() + specials_count();
430 return parameter_count() + specials_count() + local_count();
440 Bind(parameter_count(), value);
455 return Lookup(parameter_count());
536 void Initialize(int parameter_count, int local_count, int stack_height);
    [all...]
ast.h 2057 int parameter_count() { return parameter_count_; } function in class:v8::internal::FunctionLiteral
    [all...]
hydrogen.cc 5784 int parameter_count = arguments_env->parameter_count(); local
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 279 int parameter_count = function_->shared()->formal_parameter_count() + 1; local
280 for (int i = 0; i < parameter_count; ++i) {
289 int limit = input_offset - (parameter_count * kPointerSize);
391 int parameter_count = height; local
393 for (int i = 0; i < parameter_count; ++i) {
489 int parameter_count = height; local
491 for (int i = 0; i < parameter_count; ++i) {
627 int parameter_count = function->shared()->formal_parameter_count() + 1; local
630 for (int i = 0; i < parameter_count; ++i) {
634 input_offset -= (parameter_count * kPointerSize)
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 370 int parameter_count = function_->shared()->formal_parameter_count() + 1; local
371 for (int i = 0; i < parameter_count; ++i) {
380 int limit = input_offset - (parameter_count * kPointerSize);
482 int parameter_count = height; local
484 for (int i = 0; i < parameter_count; ++i) {
580 int parameter_count = height; local
582 for (int i = 0; i < parameter_count; ++i) {
706 int parameter_count = function->shared()->formal_parameter_count() + 1; local
709 for (int i = 0; i < parameter_count; ++i) {
713 input_offset -= (parameter_count * kPointerSize)
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 269 int parameter_count = function_->shared()->formal_parameter_count() + 1; local
270 for (int i = 0; i < parameter_count; ++i) {
279 int limit = input_offset - (parameter_count * kPointerSize);
381 int parameter_count = height; local
383 for (int i = 0; i < parameter_count; ++i) {
479 int parameter_count = height; local
481 for (int i = 0; i < parameter_count; ++i) {
617 int parameter_count = function->shared()->formal_parameter_count() + 1; local
620 for (int i = 0; i < parameter_count; ++i) {
624 input_offset -= (parameter_count * kPointerSize)
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 256 int parameter_count = function_->shared()->formal_parameter_count() + 1; local
257 for (int i = 0; i < parameter_count; ++i) {
266 int limit = input_offset - (parameter_count * kPointerSize);
369 int parameter_count = height; local
371 for (int i = 0; i < parameter_count; ++i) {
472 int parameter_count = height; local
474 for (int i = 0; i < parameter_count; ++i) {
605 int parameter_count = function->shared()->formal_parameter_count() + 1; local
608 for (int i = 0; i < parameter_count; ++i) {
612 input_offset -= (parameter_count * kPointerSize)
    [all...]

Completed in 245 milliseconds