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

  /external/v8/src/
scopes.cc 697 if (scope->is_declaration_scope() && scope->num_heap_slots() > 0) {
719 if (s->is_with_scope() || s->num_heap_slots() > 0) n++;
721 DCHECK(!s->is_catch_scope() || s->num_heap_slots() > 0);
722 DCHECK(!s->is_module_scope() || s->num_heap_slots() > 0);
    [all...]
scopeinfo.cc 125 DCHECK(scope->num_heap_slots() == scope_info->ContextLength() ||
126 (scope->num_heap_slots() == kVariablePartIndex &&
scopes.h 352 int num_heap_slots() const { return num_heap_slots_; } function in class:v8::internal::Scope
compiler.h 130 int num_heap_slots() const;
compiler.cc 249 int CompilationInfo::num_heap_slots() const { function in class:v8::internal::CompilationInfo
253 return scope()->num_heap_slots();
    [all...]
hydrogen.cc     [all...]
  /external/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 179 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/arm64/
full-codegen-arm64.cc 194 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-arm64.cc 687 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 186 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-ia32.cc 256 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 202 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-mips.cc 199 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/mips64/
full-codegen-mips64.cc 199 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-mips64.cc 174 int heap_slots = info()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 185 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-x64.cc 194 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/x87/
full-codegen-x87.cc 186 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-x87.cc 223 int heap_slots = info_->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc     [all...]

Completed in 992 milliseconds