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

1 2

  /external/v8/src/ast/
scopes.h 360 DCHECK(!is_catch_scope() || num_heap_slots() > 0);
361 DCHECK(!is_module_scope() || num_heap_slots() > 0);
362 return is_with_scope() || num_heap_slots() > 0;
508 int num_heap_slots() const { return num_heap_slots_; } function in class:v8::internal::Scope
scopeinfo.cc 191 DCHECK(scope->num_heap_slots() == scope_info->ContextLength() ||
192 (scope->num_heap_slots() == kVariablePartIndex &&
scopes.cc     [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 173 if (info->scope()->num_heap_slots() > 0) {
177 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 162 if (info->scope()->num_heap_slots() > 0) {
165 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 160 if (info->scope()->num_heap_slots() > 0) {
163 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 162 if (info->scope()->num_heap_slots() > 0) {
165 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 597 if (scope->num_heap_slots() > 0) {
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 170 if (info->scope()->num_heap_slots() > 0) {
174 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 180 if (info->scope()->num_heap_slots() > 0) {
184 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 179 if (info->scope()->num_heap_slots() > 0) {
183 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 176 if (info->scope()->num_heap_slots() > 0) {
180 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 181 if (info->scope()->num_heap_slots() > 0) {
185 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 155 if (info()->scope()->num_heap_slots() > 0) {
159 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-arm.cc 880 if (info_->scope()->num_heap_slots() > 0) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 592 if (info()->scope()->num_heap_slots() > 0) {
596 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-arm64.cc 729 if (info_->scope()->num_heap_slots() > 0) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 167 if (info_->scope()->num_heap_slots() > 0) {
171 int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-ia32.cc 913 if (info_->scope()->num_heap_slots() > 0) {
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 174 if (info()->scope()->num_heap_slots() > 0) {
178 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 150 if (info()->scope()->num_heap_slots() > 0) {
154 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 161 if (info()->scope()->num_heap_slots() > 0) {
165 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 151 if (info()->scope()->num_heap_slots() > 0) {
155 int slots = info()->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc 170 if (info_->scope()->num_heap_slots() > 0) {
174 int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 137 if (info_->scope()->num_heap_slots() > 0) {
141 int slots = info_->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 981 milliseconds

1 2