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

  /external/v8/src/
contexts.h 225 MIN_CONTEXT_SLOTS,
228 THROWN_OBJECT_INDEX = MIN_CONTEXT_SLOTS,
231 GLOBAL_PROXY_INDEX = MIN_CONTEXT_SLOTS,
scopeinfo.cc 196 return Context::MIN_CONTEXT_SLOTS + context_locals +
319 result = Context::MIN_CONTEXT_SLOTS + var;
499 Context::MIN_CONTEXT_SLOTS,
scopes.cc 139 // Ensure at least MIN_CONTEXT_SLOTS to indicate a materialized context.
141 static_cast<int>(Context::MIN_CONTEXT_SLOTS));
159 num_heap_slots_ = Context::MIN_CONTEXT_SLOTS;
    [all...]
contexts.cc 151 ASSERT(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS);
gdb-jit.cc 1118 int internal_slots = Context::MIN_CONTEXT_SLOTS;
1147 ASSERT(Context::MIN_CONTEXT_SLOTS == 4);
    [all...]
frames.cc     [all...]
full-codegen.cc 923 int heap_slots = scope_info->ContextLength() - Context::MIN_CONTEXT_SLOTS;
    [all...]
heap.cc     [all...]
profile-generator.cc     [all...]
bootstrapper.cc     [all...]
runtime.cc     [all...]
objects.cc     [all...]
  /external/v8/src/x64/
code-stubs-x64.cc 120 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
144 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
166 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
209 __ movq(ContextOperand(rax, i + Context::MIN_CONTEXT_SLOTS), rbx);
    [all...]
full-codegen-x64.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-x64.cc 186 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 124 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
150 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
172 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
216 __ mov(ContextOperand(eax, Context::MIN_CONTEXT_SLOTS),
221 __ mov(ContextOperand(eax, i + Context::MIN_CONTEXT_SLOTS), ebx);
    [all...]
full-codegen-ia32.cc 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-ia32.cc 188 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 145 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
174 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
197 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
239 __ str(r1, ContextOperand(r0, i + Context::MIN_CONTEXT_SLOTS));
    [all...]
full-codegen-arm.cc 191 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-arm.cc 176 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 147 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
176 for (int i = Context::MIN_CONTEXT_SLOTS; i < length; i++) {
198 int length = slots_ + Context::MIN_CONTEXT_SLOTS;
239 __ sw(a1, ContextOperand(v0, i + Context::MIN_CONTEXT_SLOTS));
    [all...]
full-codegen-mips.cc 198 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]
lithium-codegen-mips.cc 174 int heap_slots = scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS;
    [all...]

Completed in 410 milliseconds