Home
last modified time | relevance | path

Searched refs:MIN_CONTEXT_SLOTS (Results 1 – 23 of 23) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-promise.h17 kPromiseSlot = Context::MIN_CONTEXT_SLOTS,
32 kPromiseAllResolveElementRemainingSlot = Context::MIN_CONTEXT_SLOTS,
45 kPromiseAnyRejectElementRemainingSlot = Context::MIN_CONTEXT_SLOTS,
56 kCapabilitySlot = Context::MIN_CONTEXT_SLOTS,
66 kOnFinallySlot = Context::MIN_CONTEXT_SLOTS,
75 kValueSlot = Context::MIN_CONTEXT_SLOTS,
Dbuiltins-constructor.h40 STATIC_ASSERT(Context::SizeFor(kMaximumSlots + Context::MIN_CONTEXT_SLOTS) <
Dbuiltins-proxy-gen.h37 kProxySlot = Context::MIN_CONTEXT_SLOTS,
Dbuiltins-async-gen.cc22 enum Fields { kDoneSlot = Context::MIN_CONTEXT_SLOTS, kLength };
Dpromise-all.tq79 ContextSlot::MIN_CONTEXT_SLOTS + 3);
Dbuiltins-constructor-gen.cc319 TNode<IntPtrT> min_context_slots = IntPtrConstant(Context::MIN_CONTEXT_SLOTS); in FastNewFunctionContext()
/external/v8/src/objects/
Dcontexts.tq37 static_assert(slots >= ContextSlot::MIN_CONTEXT_SLOTS);
127 MIN_CONTEXT_SLOTS,
Dcontexts.h516 MIN_CONTEXT_SLOTS = EXTENSION_INDEX, enumerator
520 THROWN_OBJECT_INDEX = MIN_CONTEXT_SLOTS,
528 (MIN_CONTEXT_EXTENDED_SLOTS - MIN_CONTEXT_SLOTS) * kTaggedSize;
Dcontexts.cc301 DCHECK(slot_index < 0 || slot_index >= MIN_CONTEXT_SLOTS); in Lookup()
495 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 2);
Dintl-objects.h43 kBoundFunction = Context::MIN_CONTEXT_SLOTS,
Dscope-info.cc646 : Context::MIN_CONTEXT_SLOTS; in ContextHeaderLength()
924 return index - Context::MIN_CONTEXT_SLOTS; in SavedClassVariableContextLocalIndex()
Darguments.tq153 let contextHeaderSize: intptr = ContextSlot::MIN_CONTEXT_SLOTS;
/external/v8/src/compiler/
Djs-create-lowering.cc1228 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 2); // Ensure fully covered. in ReduceJSCreateFunctionContext()
1229 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; in ReduceJSCreateFunctionContext()
1244 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) { in ReduceJSCreateFunctionContext()
1285 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 2); // Ensure fully covered. in ReduceJSCreateCatchContext()
1286 a.AllocateContext(Context::MIN_CONTEXT_SLOTS + 1, in ReduceJSCreateCatchContext()
1310 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == 2); // Ensure fully covered. in ReduceJSCreateBlockContext()
1315 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) { in ReduceJSCreateBlockContext()
Djs-call-reducer.cc827 slot_count - Context::MIN_CONTEXT_SLOTS, FUNCTION_SCOPE), in CreateFunctionContext()
6506 Context::MIN_CONTEXT_SLOTS, in ReducePromisePrototypeFinally()
/external/v8/src/diagnostics/
Dgdb-jit.cc1092 int internal_slots = Context::MIN_CONTEXT_SLOTS; in WriteBodyInternal()
1113 DCHECK_EQ(Context::MIN_CONTEXT_SLOTS, 3); in WriteBodyInternal()
1256 int internal_slots = Context::MIN_CONTEXT_SLOTS; in WriteBodyInternal()
Dobjects-printer.cc2144 PrintScopeInfoList(*this, os, "context slots", Context::MIN_CONTEXT_SLOTS, in ScopeInfoPrint()
/external/v8/src/ast/
Dscopes.h488 : Context::MIN_CONTEXT_SLOTS;
Dscopes.cc192 Context::MIN_CONTEXT_SLOTS + index); in ClassScope()
/external/v8/src/heap/
Dfactory.cc1032 DCHECK_LE(Context::MIN_CONTEXT_SLOTS, variadic_part_length); in NewContext()
1133 STATIC_ASSERT(Context::MIN_CONTEXT_SLOTS == Context::THROWN_OBJECT_INDEX); in NewCatchContext()
1135 int variadic_part_length = Context::MIN_CONTEXT_SLOTS + 1; in NewCatchContext()
1199 DCHECK_LE(Context::MIN_CONTEXT_SLOTS, variadic_part_length); in NewBuiltinContext()
/external/v8/src/execution/
Dframes.cc2088 int index = Context::MIN_CONTEXT_SLOTS + i; in Print()
/external/v8/src/ic/
Daccessor-assembler.cc3084 IntPtrAdd(IntPtrConstant(Context::MIN_CONTEXT_SLOTS), in ScriptContextTableLookup()
/external/v8/src/interpreter/
Dbytecode-generator.cc6178 int slot_count = scope->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; in BuildNewLocalActivationContext()
/external/v8/src/init/
Dbootstrapper.cc1179 DCHECK_EQ(slot, Context::MIN_CONTEXT_SLOTS); in InstallGlobalThisBinding()