HomeSort by relevance Sort by last modified time
    Searched refs:num_heap_slots (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/v8/src/
scopes.cc 707 if (scope->is_declaration_scope() && scope->num_heap_slots() > 0) {
729 if (s->is_with_scope() || s->num_heap_slots() > 0) n++;
731 ASSERT(!s->is_catch_scope() || s->num_heap_slots() > 0);
732 ASSERT(!s->is_module_scope() || s->num_heap_slots() > 0);
    [all...]
scopeinfo.cc 146 ASSERT(scope->num_heap_slots() == scope_info->ContextLength() ||
147 (scope->num_heap_slots() == kVariablePartIndex &&
scopes.h 377 int num_heap_slots() const { return num_heap_slots_; } function in class:v8::internal::Scope
compiler.h 91 int num_heap_slots() const;
compiler.cc 188 int CompilationInfo::num_heap_slots() const { function in class:v8::internal::CompilationInfo
192 return scope()->num_heap_slots();
    [all...]
hydrogen.cc     [all...]
  /external/v8/src/
scopes.cc 664 if (outer->is_declaration_scope() && outer->num_heap_slots() > 0)
676 if (s->num_heap_slots() > 0) n++;
    [all...]
scopes.h 360 int num_heap_slots() const { return num_heap_slots_; } function in class:v8::internal::Scope
scopeinfo.cc 145 ASSERT(scope->num_heap_slots() == scope_info->ContextLength());
hydrogen.cc     [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 191 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-arm.cc 176 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-ia32.cc 188 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-mips.cc 174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-x64.cc 186 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 193 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-arm.cc 208 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 197 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-mips.cc 207 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 179 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-x64.cc 217 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 1399 milliseconds

1 2