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

1 2

  /external/chromium_org/v8/src/
scopeinfo.cc 179 return Context::MIN_CONTEXT_SLOTS + context_locals +
322 result = Context::MIN_CONTEXT_SLOTS + var;
382 int context_index = Context::MIN_CONTEXT_SLOTS + i;
536 Context::MIN_CONTEXT_SLOTS,
contexts.h 271 MIN_CONTEXT_SLOTS,
274 THROWN_OBJECT_INDEX = MIN_CONTEXT_SLOTS,
277 GLOBAL_PROXY_INDEX = MIN_CONTEXT_SLOTS,
scopes.cc 114 // Ensure at least MIN_CONTEXT_SLOTS to indicate a materialized context.
116 static_cast<int>(Context::MIN_CONTEXT_SLOTS));
138 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
    [all...]
contexts.cc 184 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
factory.cc 724 DCHECK(length >= Context::MIN_CONTEXT_SLOTS);
740 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == Context::THROWN_OBJECT_INDEX);
741 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS + 1);
756 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS);
    [all...]
gdb-jit.cc 1125 int internal_slots = Context::MIN_CONTEXT_SLOTS;
1154 DCHECK(Context::MIN_CONTEXT_SLOTS == 4);
    [all...]
code-stubs-hydrogen.cc     [all...]
frames.cc     [all...]
bootstrapper.cc     [all...]
heap-snapshot-generator.cc     [all...]
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.cc     [all...]
  /external/chromium_org/v8/test/cctest/
test-heap-profiler.cc     [all...]
  /external/chromium_org/v8/src/arm/
code-stubs-arm.cc     [all...]
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/chromium_org/v8/src/arm64/
code-stubs-arm64.cc     [all...]
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/chromium_org/v8/src/ia32/
code-stubs-ia32.cc     [all...]
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/chromium_org/v8/src/x64/
code-stubs-x64.cc 731 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
733 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
734 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
740 __ Move(r8, Smi::FromInt(Context::MIN_CONTEXT_SLOTS));
    [all...]
  /external/chromium_org/v8/src/x87/
code-stubs-x87.cc 607 // MIN_CONTEXT_SLOTS .. MIN_CONTEXT_SLOTS+parameter_count-1
609 // MIN_CONTEXT_SLOTS+parameter_count-1 ..
610 // MIN_CONTEXT_SLOTS+parameter_count-mapped_parameter_count
615 __ mov(ebx, Immediate(Smi::FromInt(Context::MIN_CONTEXT_SLOTS)));
    [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.cc     [all...]
full-codegen-mips.cc 202 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 629 milliseconds

1 2