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

  /external/v8/src/
scopeinfo.cc 115 ASSERT(heap_locals[i]->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
117 ASSERT(heap_locals[i]->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
140 ASSERT(var->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
142 ASSERT(var->slot()->index() - Context::MIN_CONTEXT_SLOTS ==
404 return n + Context::MIN_CONTEXT_SLOTS;
438 ASSERT(NumberOfContextSlots(code) >= Context::MIN_CONTEXT_SLOTS ||
452 result = static_cast<int>((p - p0) >> 1) + Context::MIN_CONTEXT_SLOTS;
502 return n + Context::MIN_CONTEXT_SLOTS - 1;
513 // number Context::MIN_CONTEXT_SLOTS number of fixed allocated slots in the
519 Context::MIN_CONTEXT_SLOTS);
    [all...]
contexts.cc 126 ASSERT(index < 0 || index >= MIN_CONTEXT_SLOTS);
222 ASSERT(index < 0 || index >= MIN_CONTEXT_SLOTS);
scopeinfo.h 86 return context_slots_[i - Context::MIN_CONTEXT_SLOTS];
90 return l == 0 ? 0 : l + Context::MIN_CONTEXT_SLOTS;
contexts.h 177 MIN_CONTEXT_SLOTS,
180 GLOBAL_PROXY_INDEX = MIN_CONTEXT_SLOTS,
frames.cc 582 if (heap_locals_count > Context::MIN_CONTEXT_SLOTS) {
585 for (int i = Context::MIN_CONTEXT_SLOTS; i < heap_locals_count; i++) {
scopes.cc 929 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
    [all...]
bootstrapper.cc     [all...]
heap.cc     [all...]
runtime.cc     [all...]
objects.cc     [all...]
  /external/v8/src/arm/
codegen-arm.cc     [all...]
  /external/v8/src/x64/
codegen-x64.cc     [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 591 milliseconds