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

1 2

  /external/v8/test/unittests/compiler/
js-create-lowering-unittest.cc 167 8 + Context::MIN_CONTEXT_SLOTS)),
187 Context::MIN_CONTEXT_SLOTS)),
208 Context::MIN_CONTEXT_SLOTS + 1)),
  /external/v8/src/ast/
scopeinfo.cc 253 const int receiver_index = Context::MIN_CONTEXT_SLOTS + 0;
260 DCHECK_EQ(scope_info->ContextLength(), Context::MIN_CONTEXT_SLOTS + 1);
322 return Context::MIN_CONTEXT_SLOTS + context_locals + context_globals +
493 result = Context::MIN_CONTEXT_SLOTS + var;
531 int result = Context::MIN_CONTEXT_SLOTS + var;
542 int const var = slot_index - Context::MIN_CONTEXT_SLOTS;
751 PrintList("context slots", Context::MIN_CONTEXT_SLOTS,
scopes.cc 122 // Ensure at least MIN_CONTEXT_SLOTS to indicate a materialized context.
124 static_cast<int>(Context::MIN_CONTEXT_SLOTS));
145 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/
contexts.h 404 MIN_CONTEXT_SLOTS = GLOBAL_PROXY_INDEX,
406 THROWN_OBJECT_INDEX = MIN_CONTEXT_SLOTS,
409 WRAPPED_CONTEXT_INDEX = MIN_CONTEXT_SLOTS,
410 WHITE_LIST_INDEX = MIN_CONTEXT_SLOTS + 1
contexts.cc 335 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
436 int index = Context::MIN_CONTEXT_SLOTS + context_locals;
factory.cc 799 DCHECK(length >= Context::MIN_CONTEXT_SLOTS);
815 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == Context::THROWN_OBJECT_INDEX);
816 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS + 1);
831 STATIC_ASSERT(Context::WHITE_LIST_INDEX == Context::MIN_CONTEXT_SLOTS + 1);
832 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS + 2);
847 Handle<FixedArray> array = NewFixedArray(Context::MIN_CONTEXT_SLOTS);
    [all...]
gdb-jit.cc 1171 int internal_slots = Context::MIN_CONTEXT_SLOTS;
1200 DCHECK(Context::MIN_CONTEXT_SLOTS == 4);
    [all...]
code-stubs-hydrogen.cc     [all...]
frames.cc     [all...]
bootstrapper.cc     [all...]
  /external/v8/src/compiler/
js-create-lowering.cc 665 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 4); // Ensure fully covered.
666 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS;
673 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) {
695 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 4); // Ensure fully covered.
696 a.AllocateArray(Context::MIN_CONTEXT_SLOTS, factory()->with_context_map());
    [all...]
ast-graph-builder.cc     [all...]
  /external/v8/src/debug/
debug-scopes.cc 756 int context_index = Context::MIN_CONTEXT_SLOTS + i;
  /external/v8/test/cctest/interpreter/
test-bytecode-generator.cc     [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 463 Smi::FromInt(Context::MIN_CONTEXT_SLOTS + context_index));
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 177 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 165 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 163 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 165 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc     [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc     [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 174 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 184 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 183 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 180 int slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 1252 milliseconds

1 2